+ 1
Showing error: expected an indented block
num=12 if num>5: print("Bigger than 5") if num<=47: print("Between 5 and 47") On second print statement it highlights and showing error : expected an indented block. I can't understand plz help
2 Respostas
+ 4
Reformat the code it will fixed
num = 12
if num>5:
print ("Bigger than ")
if num<=47:
print ("Between 5 and 47")
+ 3
What Ramshek Rana said, but logically, your code has to look like this:
num = 12
if num>5:
print ("Bigger than 5")
if num<=47:
print ("Between 5 and 47")
Otherwise, it will print "between 5 and 57" for num = 2