if guess == number:
print 'Congratulations, you guessed it.' # New block starts here print "(but you do not win any prizes!)" # New block ends here
elif guess < number:
print 'No, it is a little higher than that' # Another block # You can do whatever you want in a block ...
else:
print 'No, it is a little lower than that' # you must have guess > number to reach here
$ python if.py
Enter an integer : 50
No, it is a little lower than that Done
$ python if.py
Enter an integer : 22
No, it is a little higher than that Done
$ python if.py
Enter an integer : 23
Congratulations, you guessed it. (but you do not win any prizes!) Done