I suck | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 2

I suck

I have been trying very hard to get my else and elifs to work but I can't can you help me they always have syntax errors here is is one thing I tried hi = 879 while hi > 200: hi = hi - 200 if hi < 300: print("goodbye") else: print("hi") here is another thing I tried after I got the syntax error hi = 879 while hi > 200: hi = hi - 200 if hi < 300: print("goodbye") elif hi > 300: print("hi")

28th Sep 2020, 3:21 PM
Isaac Black
Isaac Black - avatar
2 Answers
+ 2
PS this is python 3
28th Sep 2020, 3:22 PM
Isaac Black
Isaac Black - avatar
+ 1
hi = 879 while hi > 200: hi = hi - 200 if hi < 300: print("goodbye") elif hi > 300: print("hi") THIS IS THE RIGHT SYNTAX...!
28th Sep 2020, 3:26 PM
Srishti
Srishti - avatar