1 - Python Output
Example 1
Explanation
- Prints the text "Hello World" to the console output
- Uses the built-in
print()function to display string literals - The string 'Hello World' is passed as an argument to the print function
- Case sensitivity means that 'Hello World' and 'hello world' would be treated as different strings
- Produces the side effect of displaying text in the program's output window

