As simple as that may have seemed, you have just ran into several important concepts by running the Hello World script.
First, you've given your first instruction to the interpreter. 'print' is a command that takes in one argument and outputs it back to the screen. In this case, it took the string "Hello World!" as the argument.
"Hello World!" is a string which is a primitive data type in Python. Strings are a collection of characters that are wrapped in single or double quotes and are similar to words or sentences in the English language.
By hitting enter, you have just indicated that you are done building the instruction and that you are now sending it to the computer to evaluate and run.
Ask a Question
Questions & Answers
-
Aug 9th, 2012Ragavan asks:The take Concept 3 Quiz link leads to nextconcept, rather than to quiz
edit
