Logo

Programming-Idioms

History of Idiom 2 > diff from v34 to v35

Edit summary for version 35 by :
New Python implementation by user [myguel]

Version 34

2016-02-17, 01:51:18

Version 35

2016-02-17, 11:00:17

Idiom #2 Print Hello 10 times

Loop to execute some code a constant number of times

Idiom #2 Print Hello 10 times

Loop to execute some code a constant number of times

Code
print("Hello"*10)
Comments bubble
python 3