0
Need Help in My Pyton Code
Hello, can someone look this up? https://code.sololearn.com/cWF0KCi8iDDu/#py i dont know why it is invalid syntax
2 Respuestas
+ 1
print("Hello World!")
num=1
while True:
num+=1
print(num)
if num>100:
list(range(0,num))
elif num<100:
continue
Your indentation was wrong and you don't need () after continue.
0
thanks