How to improve my code | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
3rd Sep 2019, 10:52 AM
sathya
sathya - avatar
4 Respuestas
+ 2
Cbr✔[ Exams ] if count == 9: print("Your number is", 1) ... OR for i in range(1,10): if count == i: print("Your number is", 10-i) break
3rd Sep 2019, 1:52 PM
Diego
Diego - avatar
+ 2
You can use a for loop. Here's a sample, you'll have to complete the "guesses" list. guesses = [[[1,2],[4,5]],[[3,6],[7,8]]] for lst in guesses: print ("Check whether your guessed number is in the list\n") print (lst) print("If your guessed number is in the above list type") x = input("yes or no\n") if x == 'yes' : count+=1 ...
3rd Sep 2019, 1:30 PM
Diego
Diego - avatar
+ 1
https://code.sololearn.com/cCetUduD1isv/?ref=app Now this is not working as expected Diego
3rd Sep 2019, 2:17 PM
sathya
sathya - avatar
0
Błack Jesus❕but I want the user to guess a number. Any tricks for that
3rd Sep 2019, 12:40 PM
sathya
sathya - avatar