1、python中实现密码密文输入
#!/usr/bin/env pythonimport getpass #调用getpass模块就能实现密码密文显示username=input("username:")userpasswd=getpass.getpass("userpasswd:")print(username,userpasswd)
2、if 判断
(1)、
#!/usr/bin/env python_username = "lijinzhu"_userpasswd = "abc123"username = input("username:")userpasswd = input("userpasswd:")if _username == username and _userpasswd == userpasswd: print("Welcome usr {name} login...".format(name=username))else: print("Invalid username or passwd!")
(2)、猜年龄
#!/usr/bin/env python_age = 18age = int(input("age:"))if _age == age: print("right")elif _age > age: print("think smaller...")else: print("think strong...")
#Note:
if 条件判断:
...
elif 条件判断:
...
else:
...
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦