首页 > Python资料 博客日记
在 Python 中从键盘读取用户输入
2024-10-28 01:00:05Python资料围观40次
文章目录
如何在 Python 中从键盘读取用户输入
input 函数
使用input读取键盘输入
input是一个内置函数,将从输入中读取一行,并返回一个字符串(除了末尾的换行符)。
例1: 使用Input读取用户姓名
name = input("你的名字:")
print(f"你好,{name}")
使用input读取特定类型的数据
input默认返回字符串,如果需要读取其他类型的数据,需要使用类型转换。
例2:读取用户年龄
age = input("你的年龄:")
print(type(age)) # <class 'str'>
age = int(input("你的年龄:"))
print(type(age)) # <class 'int'>
处理错误
如果用户输入的不是数字,int()
将会抛出ValueError
异常。
>>> age = int(input("你的年龄:"))
你的年龄:三十
Traceback (most recent call last):
...
ValueError: invalid literal for int() with base 10: '三十'
使用try-except
处理错误可以使程序更健壮。
例3:用try-except处理用户输入错误
while True:
try:
age = int(input("你的年龄:"))
except ValueError:
print("请使用数字输入你的年龄,例如24")
else:
break
print(f"明年, 你将 {age + 1} 岁。")
从用户输入中读取多个值
有时用户需要输入多个值,可以使用split()
方法将输入分割成多个值。
例4:从用户输入中读取多个值
user_colors = input("输入三种颜色,用,隔开: ")
# orange, purple, green
colors = [s.strip() for s in user_colors.split(",")]
print(f"颜色的列表为: {colors}")
getpass 模块
有时,程序需要隐藏用户的输入。例如,密码、API 密钥甚至电子邮件地址等输入。可用标准库模块getpass
实现。
下面是一个验证用户邮箱的例子。
例5:使用getpass隐藏用户输入
import os
import getpass
def verify_email(email):
allowed_emails = [
email.strip() for email in os.getenv("ALLOWED_EMAILS").split(",")
]
return email in allowed_emails
def main():
email = getpass.getpass("输入邮箱地址:")
if verify_email(email):
print("有效的邮箱,通过。")
else:
print("无效的邮箱,拒绝。")
if __name__ == "__main__":
main()
我们使用os.getenv
获取环境变量ALLOWED_EMAILS
,并使用getpass.getpass
隐藏用户输入。
为了设置环境变量,Windows用户可以在命令行或powershell中使用$env:
命令。powershell设置环境变量-知乎
设置当前会话的环境变量:
$env:ALLOWED_EMAILS = 'info@example.com'
linux用户可以使用export
命令。
export ALLOWED_EMAILS=info@example.com
然后执行程序,输入邮箱地址,如果邮箱地址在环境变量中,程序将返回Email is valid. You can proceed.
否则返回Incorrect email. Access denied.
使用 PyInputPlus 自动执行用户输入评估
PyInputPlus包基于验证和重新提示用户输入而构建并增强 input() 。
这是一个第三方包,可用pip安装。
python -m pip install pyinputplus
例6:使用PyInputPlus读取用户输入
import pyinputplus as pyip
age = pyip.inputInt(prompt="你的年龄:", min=0, max=120)
print(f"你的年龄是 {age}")
注:这个包最后更新时间是2020年10月11日。
例7:一个简单的交易程序
import pyinputplus as pyip
account_balance = 1000
print("欢迎来到 REALBank")
while True:
print(f"\n你的余额为: ¥{account_balance}")
transaction_type = pyip.inputChoice(["存钱", "取钱", "退出"])
if transaction_type == "退出":
break
elif transaction_type == "存钱":
deposit_amount = pyip.inputInt(
prompt="输入金额 (最大 ¥10,000): ¥", min=0, max=10000
)
account_balance += deposit_amount
print(f"存入 ¥{deposit_amount}.")
elif transaction_type == "取钱":
withdrawal_amount = pyip.inputInt(
prompt="输入金额: ¥", min=0, max=account_balance
)
account_balance -= withdrawal_amount
print(f"取出 ¥{withdrawal_amount}.")
print("\n感谢选择 REALBank。再见!")
总结
- 使用
input
函数读取用户输入 - 使用
getpass
模块隐藏用户输入 - 使用
PyInputPlus
包增强用户输入
标签:
相关文章
最新发布
- 【Python】selenium安装+Microsoft Edge驱动器下载配置流程
- Python 中自动打开网页并点击[自动化脚本],Selenium
- Anaconda基础使用
- 【Python】成功解决 TypeError: ‘<‘ not supported between instances of ‘str’ and ‘int’
- manim边学边做--三维的点和线
- CPython是最常用的Python解释器之一,也是Python官方实现。它是用C语言编写的,旨在提供一个高效且易于使用的Python解释器。
- Anaconda安装配置Jupyter(2024最新版)
- Python中读取Excel最快的几种方法!
- Python某城市美食商家爬虫数据可视化分析和推荐查询系统毕业设计论文开题报告
- 如何使用 Python 批量检测和转换 JSONL 文件编码为 UTF-8
点击排行
- 版本匹配指南:Numpy版本和Python版本的对应关系
- 版本匹配指南:PyTorch版本、torchvision 版本和Python版本的对应关系
- Python 可视化 web 神器:streamlit、Gradio、dash、nicegui;低代码 Python Web 框架:PyWebIO
- 相关性分析——Pearson相关系数+热力图(附data和Python完整代码)
- Python与PyTorch的版本对应
- Anaconda版本和Python版本对应关系(持续更新...)
- Python pyinstaller打包exe最完整教程
- Could not build wheels for llama-cpp-python, which is required to install pyproject.toml-based proj