[Joke] Of TheDay | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

[Joke] Of TheDay

A man is smoking a cigarette and blowing smoke rings into the air.  His girlfriend becomes irritated with the smoke and says, “Can’t you see the warning on the cigarette pack?  Smoking is hazardous to your health!”  To which the man replies, “I am a programmer.  We don’t worry about warnings; we only worry about errors.” # ans in Python for (i=0;i<1000000000000000000000;i++) print ("love it ")

18th Dec 2016, 3:58 AM
Rahul Sharma
Rahul Sharma - avatar
2 Answers
+ 1
good one, but you can't write a for loop this way in python 😋, try something like this instead: for i in range(100000000000000): print("love it") or this: [print("love it") for i in range(100000000000000)] or better: while True: print("love it")
18th Dec 2016, 10:45 AM
Omar Einea
Omar Einea - avatar
0
😏whatever omar Einea
18th Dec 2016, 4:52 PM
Rahul Sharma
Rahul Sharma - avatar