Python 的 While 循环中的输入验证
在 while 循环中验证输入:
-
使用
try/except
或if/else
语句来验证输入。 -
如果输入无效,则使用
continue
语句继续下一次迭代。 -
如果输入有效,则使用
break
语句跳出循环。
# ✅ 带有异常处理的while循环中的输入验证
num = 0
while True:
try:
num = int(input("Enter your favorite integer: "))
except ValueError:
print("Please enter a valid integer")
continue
else:
print(f'You entered: {num}')
break
print(num)
if num > 100:
print('The provided number is greater than 100')
elif num == 100:
print('The provided number is equal to 100')
else:
print('The provided number is less than 100')
# ------------------------------------------------------
# ✅ Input validation in while loop with if/else statement
password = ''
while True:
password = input('Enter your password: ')
if len(password) < 5:
print('Password too short')
continue
else:
print(f'You entered {password}')
break
print(password)
第一个示例使用异常处理验证 while 循环中的输入。
代码片段不断提示用户输入,直到他们输入一个有效的整数。
num = 0
while True:
try:
num = int(input("Enter your favorite integer: "))
except ValueError:
print("Please enter a valid integer")
continue
else:
print(f'You entered: {num}')
break
print(num)
if num > 100:
print('The provided number is greater than 100')
elif num == 100:
print('The provided number is equal to 100')
else:
print('The provided number is less than 100')
如果 try
块中的代码引发 ValueError
,则 except
块运行,我们使用 continue 语句继续下一次迭代。
如果用户输入一个有效整数,
try
块成功完成,然后else
块运行,我们使用 break 语句退出while
循环。
continue
语句继续循环的下一次迭代。
break 语句跳出最里面的 for
或 while
循环。
在 while
循环中验证用户输入时,我们在输入无效时使用 continue 语句,例如 在 except
块或 if
语句中。
如果输入有效,我们使用 break 语句退出 while
循环。
我们可以使用相同的方法使用 if/else
语句验证用户输入。
password = ''
while True:
password = input('Enter your password: ')
if len(password) < 5:
print('Password too short')
continue
else:
print(f'You entered {password}')
break
print(password)
while
循环不断迭代,直到用户输入一个长度至少为 5 的值。
如果值太短,我们使用
continue
语句继续下一次迭代。
如果该值至少有 5 个字符长,我们使用 break 语句作为输入有效。
如果需要检查多个条件,可以使用布尔值或和和运算符。
password = ''
common_passwords = ['abcde', 'password123']
while True:
password = input('Enter your password: ')
if len(password) < 5 or password in common_passwords:
print('Pick a strong password')
continue
else:
print(f'You entered {password}')
break
print(password)
if
语句检查密码是否少于 5 个字符或是否在常用密码列表中。
我们使用了布尔值或运算符,因此如果满足两个条件中的任何一个,if
块就会运行。
如果密码少于5个字符或者包含在常用密码列表中,我们继续下一次迭代,再次提示用户。
如果我们需要在验证输入时检查是否满足多个条件,请使用 and
布尔运算符。
password = ''
common_passwords = ['abcde', 'password123']
while True:
password = input('Enter your password: ')
if len(password) > 5 and password not in common_passwords:
print(f'You entered {password}')
break
else:
print('Pick a strong password')
continue
print(password)
我们使用了 and
布尔运算符,因此要运行 if
块,必须满足两个条件。
密码必须超过 5 个字符,并且必须不在常用密码列表中。
如果条件满足,我们使用 break 语句退出 while True
循环。
如果条件不满足,我们使用 continue 语句继续下一次迭代。
相关文章
Python for 循环中的下一项
发布时间:2023/04/26 浏览次数:179 分类:Python
-
本文讨论了 Python 中的 for 循环以及如何通过使用 for 循环和示例来跳过列表的第一个元素。
Python While 循环用户输入
发布时间:2023/04/26 浏览次数:148 分类:Python
-
我们可以在 while 循环中使用 input() 函数来输入数据,直到在 Python 中满足某个条件。
在 Python 中将整数转换为罗马数字
发布时间:2023/04/26 浏览次数:87 分类:Python
-
本篇文章将介绍在 Python 中将整数转换为罗马数字。以下是一个 Python 程序的实现,它将给定的整数转换为其等效的罗马数字。
在 Python 中将罗马数字转换为整数
发布时间:2023/04/26 浏览次数:144 分类:Python
-
本文讨论如何在 Python 中将罗马数字转换为整数。 我们将使用 Python if 语句来执行此操作。 我们还将探讨在 Python 中将罗马数字更改为整数的更多方法。
在 Python 中读取 gzip 文件
发布时间:2023/04/26 浏览次数:70 分类:Python
-
本篇文章强调了压缩文件的重要性,并演示了如何在 Python 中使用 gzip 进行压缩和解压缩。
在 Python 中锁定文件
发布时间:2023/04/26 浏览次数:141 分类:Python
-
本文解释了为什么在 Python 中锁定文件很重要。 这讨论了当两个进程在没有锁的情况下与共享资源交互时会发生什么的示例,为什么在放置锁之前知道文件状态很重要,等等
在 Python 中将 PDF 转换为文本
发布时间:2023/04/26 浏览次数:196 分类:Python
-
在本教程中,我们将学习如何使用 Python 使用 PyPDF2、Aspose 和 PDFminer 将 PDF 文档转换为文本文件。
在 Python 中创建临时文件
发布时间:2023/04/26 浏览次数:53 分类:Python
-
本文讲解了tempfile库函数的四个子函数:TemporaryFile、NamedTemporaryFile、mkstemp、TemporaryDirectory。 每个部分都提供了适当的程序,以简化对概念的理解。