Logo

Programming-Idioms

History of Idiom 1 > diff from v73 to v74

Edit summary for version 74 by Wohlfe:
[Python] Clarification.

Version 73

2019-09-26, 16:57:35

Version 74

2019-09-26, 16:59:32

Idiom #1 Print Hello World

Print a literal string on standard output

Idiom #1 Print Hello World

Print a literal string on standard output

Code
print("Hello World")
Code
print("Hello World")
Comments bubble
This works in Python 2 and Python 3.
Comments bubble
This works in Python 3, and will work in Python 2 with the correct import.