is it possible to write two values in one line in continue function in python's while loop??can anyone help me to solve this?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

is it possible to write two values in one line in continue function in python's while loop??can anyone help me to solve this??

https://code.sololearn.com/cZkT5K6Rru09/?ref=app

3rd Apr 2020, 2:29 PM
HAMZA
2 Answers
+ 1
thanks
3rd Apr 2020, 2:52 PM
HAMZA
0
Use "and", "or" keywords. if i == 10 and i == 12: // some code or, if i == 10 or i == 12: // some code
3rd Apr 2020, 2:49 PM
Mustafa K.
Mustafa K. - avatar