Please i am facing an indentation error here | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Please i am facing an indentation error here

I think it is not nesting the elif condition, what should I do? https://code.sololearn.com/c70zjiYh9pZT/?ref=app

3rd Nov 2018, 6:29 AM
Prometheus
Prometheus - avatar
5 Answers
+ 3
Hi! It looks like you may have mixed up Python 3 and Python 2 syntax. Only Python 3 uses print with parentheses, and only Python 2 uses raw_input(). I've made them all for Python 3, and also tried to fix your indentation issues. import random n = random.randint(1, 100) User = int(input("Enter the number here")) while User != n: print() if User < n: print("The number guessed is low") User = int(input("Enter the number here")) elif User > n: print("Sorry, but the number you guessed is too high") User = int(input("Enter the number here")) print("Good Job, you've guessed the number correctly") Also, please note that on Sololearn, since we have to enter all the inputs at the same time, this code will not work so well here. But I believe it should be fine in your PC. Please let me know otherwise! Thanks, and happy coding! :)
3rd Nov 2018, 6:55 AM
Kishalaya Saha
Kishalaya Saha - avatar
+ 2
Py think that line 9 your code is terminating the if, because it has less identation than the if That's why the error at line 11, bacause you elif cant see the if because its already closed
3rd Nov 2018, 6:58 AM
Taste
Taste - avatar
+ 1
Fix identation at line 9, 14, and 19 it'll do
3rd Nov 2018, 6:48 AM
Taste
Taste - avatar
+ 1
Just add tab in those lines, nothing complicated
3rd Nov 2018, 6:52 AM
Taste
Taste - avatar
0
can you re write the code
3rd Nov 2018, 6:51 AM
Prometheus
Prometheus - avatar