python學習筆記之003.py

版權聲明:本文爲博主原創文章,未經博主允許不得轉載。 https://blog.csdn.net/zhendeaini18/article/details/77074883
#!/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
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章