+ 3
How many if statements can be allowed in nested if else statements?
11 Answers
+ 7
Over 9000
+ 5
As many as you want
+ 5
It's no limit dude you can use as many as you want
+ 4
Here's a test using only if's (it bombs on indentation exceeded at a lower number, perhaps there's another way):
str = "" ; indent=0
while True:
str += indent * " " + "if True:"
exec(str + "pass")
indent += 1
str += "\n"
+ 3
Thanks anna
+ 2
As many as you can handle đđđ
+ 2
It's your wish......
+ 1
As many as you need.
0
As many as you want
0
Its unlimited in c++
0
as per your requirements you can add it