+ 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 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")
0
đwhatever omar Einea