码迷,mamicode.com
首页 > 编程语言 > 详细

python中if else流程判断

时间:2018-04-09 15:02:02      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:if   else elif   

1、python中实现密码密文输入

#!/usr/bin/env python

import 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 = 18
age = int(input("age:"))

if _age == age:
    print("right")
elif _age > age:
    print("think smaller...")
else:
    print("think strong...")

#Note:
if 条件判断:
...
elif 条件判断:
...
else:
...

python中if else流程判断

标签:if   else elif   

原文地址:http://blog.51cto.com/limingyu/2095993

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!