Whether you're a student or a professional, IDNLearn.com has answers for everyone. Our experts provide accurate and detailed responses to help you navigate any topic or issue with confidence.

When using the text command, what needs to be around the word or words you
want to appear?


Sagot :

Answer:

In most programming languages "" are required around text.

Explanation:

Python: print("text")

HTML: <p>text</p>

C++: int Main() {

cout << "text" << endl;

}

Lua: print("text")