python中if else流程判断

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中if else流程判断相关的知识,希望对你有一定的参考价值。

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流程判断的主要内容,如果未能解决你的问题,请参考以下文章

python中if else流程判断

Python流程控制

Day1:If else流程判断

python学习笔记(if else流程判断while循环for循环)

python 3 if else 流程判断示例

python-if else流程判断--006