Logo

Programming-Idioms

History of Idiom 1 > diff from v64 to v65

Edit summary for version 65 by hiker:
[Python] works in python3

Version 64

2017-11-10, 22:03:56

Version 65

2018-05-22, 08:28:47

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).