day13 3.27
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了day13 3.27相关的知识,希望对你有一定的参考价值。
1.密文密码 getpass.getpass
name = input("please input your name: ") passwd = getpass.getpass("please input your passwd: ") if name == "alex" and passwd == "123456": print("welcome alex") else: print("Wrong username or password")
2. int str
age = 56 guess_age = int(input("please input age: ")) if guess_age > age: print("try smaller...") elif guess_age < age: print("try bigger..") else: print("you got it!")
以上是关于day13 3.27的主要内容,如果未能解决你的问题,请参考以下文章