您的位置:首页 > 编程语言 > Python开发

python学习笔记之003.py

2017-08-10 23:04 519 查看
#!/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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: