摘要: if循环小练习 age = 56 count = 0 while True: if count ==3: break guess_age = int(input("guess age:")) if guess_age == age: print("yes,you got it...") break 阅读全文
posted @ 2020-07-02 19:47 hanjianfei 阅读(169) 评论(0) 推荐(0)
摘要: import getpass username = input("username:")password = getpass.getpass("password:") print(username,password) 阅读全文
posted @ 2020-07-02 18:11 hanjianfei 阅读(787) 评论(0) 推荐(0)