Logo

Programming-Idioms

History of Idiom 1 > diff from v65 to v66

Edit summary for version 66 by ara:
Restored version 64

Version 65

2018-05-22, 08:28:47

Version 66

2018-05-27, 20:21:36

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 only in Python 2 (not in Python 3).
Comments bubble
This works only in Python 2 (not in Python 3).