python if条件判断及while语句实例
Posted 乔吉拉德
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python if条件判断及while语句实例相关的知识,希望对你有一定的参考价值。
python if 实例:
if实例:
user_id = input("请输入用户名:")
user_pass = input("请输入密码:")
if user_id == "root":
if user_pass =="1234":
print("登录成功")
else:
print("密码输入不对")
else:
print("用户名输入不对")
print("请重新输入用户名")
while实例:
count =0
while count <100:
print(count)
count = count + 1
print("循环结束")
实验:
输出:1 2 3 4 5 6 8 9 10
n = 1
while n <= 10:
if n == 7:
pass
else:
print (n)
n = n + 1
print("---end---")
以上是关于python if条件判断及while语句实例的主要内容,如果未能解决你的问题,请参考以下文章