Python编程从入门到实践笔记——用户输入和while循环

Python编程从入门到实践笔记——用户输入和while循环

复制代码
#coding=utf-8
#函数input()让程序暂停运行,等待用户输入一些文本。得到用户的输入以后将其存储在一个变量中,方便后续使用
name=input("Please Enter Your Name:")
print("Hello!"+name+"!Welcome to Python world!")
 
prompt = "If you tell us who you are, we can personalize the messages you see.\nWhat is your first name:"
name=input(prompt)
print("Hello!"+name+"!")
 
#将数字的字符串表示转换为数值 int()
age=input("How old are you?")
age=int(age)
if age < 18:
    print("Deny")
elif age >= 18 and age <= 60:
    print("Access")
else:
    print("Sorry") 
 
#求模运算符 % 返回余数
 
#while循环
current_number = 1
while current_number <= 5:
    print("current_number:"+str(current_number))
    current_number += 1;#注意python中没有++操作,究其原因,python中变量是以内容为基准而不是像 c 中以变量名为基准
    
#使用标志
active=True
while active:
    message = input(prompt)
    if message == 'quit':
        active = False
    else:
        print(massage)
 
#使用break退出循环
while True:
    message = input(prompt)
    if message == 'quit':
        break
    else:
        print(massage)
 
#使用continue 和其他语言的break、continue用法都一样
#避免无限循环,也就是说要注意循环的条件
#如果陷入了无限循环,可以按Ctrl+C,与Linux中命令一样
 
#使用while循环来出列列表和字典
#在列表之间移动元素
unconfirmed_users=['alice','bob','candy']
confirmed_users=[]
while unconfirmed_users:
    current_user = unconfirmed_users.pop()
    
    print("Verifying user:"+current_user.title())
    confirmed_users.append(current_user)
    
print("\nThe following users have been confirmed:")
for confirmed_user in confirmed_users:
    print(confirmed_user.title())
 
#删除包含特定值的所有列表元素
#remove()删除列表中特定值只删除第一个匹配的,无法删除多个;如果想全部删除,通过遍历来删除
pets=['dog','cat','panda','fish','rabbit','cat']
print(pets)
while 'cat' in pets:
    pets.remove('cat')
    
print(pets)
 
#使用用户输入来填充字典
responses = {}
polling_active = True
while polling_active :
    name = input("Name:")
    response = input("Response:")
    
    responses[name] = response
    
    repeat = input("yes or no:")
    if repeat == 'no':
        polling_active = False
        
print(responses)
复制代码

 

posted @   James_Shangguan  阅读(262)  评论(0编辑  收藏  举报
编辑推荐:
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
阅读排行:
· winform 绘制太阳,地球,月球 运作规律
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· 上周热点回顾(3.3-3.9)
· AI 智能体引爆开源社区「GitHub 热点速览」
· 写一个简单的SQL生成工具
点击右上角即可分享
微信分享提示