python学习笔记之003.py

来源:互联网 发布:超级玛丽mac版 编辑:程序博客网 时间:2024/06/05 20:44
#!/usr/bin/env python
# coding=utf-8
# Created Time:    2017-08-07 10:14:13
# Modified Time:   2017-08-07 10:23:15


number = 23
guess = int(raw_input('Enter as integer : '))


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


print 'Done'
# This last statement is always executed,after the if statement is executed
原创粉丝点击