I\'m a newbie to Python and currently learning Control Flow commands like if, else, etc.
if
else
The if statement is working all fine
if guess == number: print ("Good") elif guess == 2: print ("Bad") else: print ("Also bad")
Make sure you have your identation right. The syntax is ok.