Logo

Programming-Idioms

History of Idiom 1 > diff from v23 to v24

Edit summary for version 24 by :
[Python] Severed 2 syntaxes -> 2 impls

Version 23

2015-12-30, 16:37:28

Version 24

2015-12-30, 16:40:17

Idiom #1 Print Hello World

Print a litteral string on standard output

Idiom #1 Print Hello World

Print a litteral string on standard output

Code
print "Hello World"
# or in python3
print("Hello World")
Code
print "Hello World"
Comments bubble
This works only in Python 2 (not in Python 3).