0
Someone help me fix the(indentation required)
print("choice judgements") c=input("enter your choice") d=int(c) if(d==1): print("you are good") if(d==2): print("you are very good")
1 Answer
+ 4
Python doesn't use brackets but it still needs to know where the "if" and other statements ends.
Instead of brackets, code blocks are made using tabs.
print("choice judgements")
c=input("enter your choice")
d=int(c)
if(d==1):
print("you are good")
if(d==2):
print("you are very good")
Make sure you don't mix spaces and tabs.