Logo

Programming-Idioms

History of Idiom 2 > diff from v125 to v126

Edit summary for version 126 by programming-idioms.org:
Admin deletes impl 1493: Dupe of 3117

Version 125

2020-10-06, 20:24:53

Version 126

2020-10-06, 20:26:08

Idiom #2 Print Hello 10 times

Loop to execute some code a constant number of times

Illustration

Idiom #2 Print Hello 10 times

Loop to execute some code a constant number of times

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