+ 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 ")
2 ответов
+ 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")
0
😏whatever omar Einea