while语句
2023-05-25 16:20
views:
446
source:
596
到目前为止,我们每次都只处理了一项用户信息:获取用户的输入,再将输入打印出来或作
出应答;循环再次运行时,我们获悉另一个输入值并作出响应。然而,要记录大量的用户和信息,
需要在while循环中使用列表和字典。
for循环是一种遍历列表的有效方式,但在for循环中不应修改列表,否则将导致Python难以
跟踪其中的元素。要在遍历列表的同时对其进行修改,可使用while循环。通过将while循环同列
表和字典结合起来使用,可收集、存储并组织大量输入,供以后查看和显示。
7。3。1 在列表之间移动元素
假设有一个列表,其中包含新注册但还未验证的网站用户;验证这些用户后,如何将他们移
到另一个已验证用户列表中呢?一种办法是使用一个while循环,在验证用户的同时将其从未验
证用户列表中提取出来,再将其加入到另一个已验证用户列表中。代码可能类似于下面这样:
Disclaimer: The above articles are added by users themselves and are only for typing and communication purposes. They do not represent the views of this website, and this website does not assume any legal responsibility. This statement is hereby made! If there is any infringement of your rights, please contact us promptly to delete it.