Skip to content

Instantly share code, notes, and snippets.

@zhangxiaoda007
Created September 14, 2018 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhangxiaoda007/1d7b261143a102b7ccbfcaeb34f69f59 to your computer and use it in GitHub Desktop.
Save zhangxiaoda007/1d7b261143a102b7ccbfcaeb34f69f59 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# author:The Machinist time:18-9-14
# 猜年龄
age_of_zhang = 26
count = 0
while True: # while count < 3
if count == 3:
break
guess_age = int(input("guess age:"))
if guess_age == age_of_zhang:
print("yes,you got it.")
break
elif guess_age > age_of_zhang:
print("think smaller...")
else:
print("think bigger!")
count = count + 1 # count +=1
if count == 3:
print("you have tried too many times..fuck off!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment