0
So no 2 if can use together without nested?
3 Answers
+ 2
Please try to provide some context for your questions. It's not really clear what you want to know
https://www.sololearn.com/discuss/1316935/?ref=app
+ 2
You can combine multiple conditions with "and" and "or":
if condition1 and condition2 or condition3:
do_something()
0
As we use if and just after this we use another if then they are nested but what if we want 2 if statement together and not nested then what we have to do?