Python__07--input()

简介: input()

1 input()

描述:

input()函数是输入性函数,与print()函数类似,input()函数括号里的内容是会显示出来的,但不同在于,我们需要输入对应的内容,回车后才能继续运行。

1.1 测试代码

a=input('提问,你想干什么呢?')
print("==============1===============")
print(a)
a=input('请输入一个整数')#结果是str类型
int(a)                  #强转
print("==============2===============")
print(a)

1.2 运行结果

tmpC385.png (395×225) (amazonaws.com)

相关文章
|
6月前
python-input()函数
python-input()函数
67 2
|
存储 Python
【python基础知识】3.input()函数
【python基础知识】3.input()函数
229 1
【python基础知识】3.input()函数
|
存储 Python
【Python】(四)input() 函数
【Python】(四)input() 函数
378 0
【Python】(四)input() 函数
|
2月前
|
Python Windows
Python:执行py命令,提示: Can‘t find a default Python.
Python:执行py命令,提示: Can‘t find a default Python.
|
3月前
|
存储 安全 数据安全/隐私保护
Python的input语句
Python的input语句
|
6月前
|
Python
Python 使用type()函数
【5月更文挑战第10天】
71 4
|
6月前
|
安全 Python
Python中input()函数
【4月更文挑战第3天】,`input()` 是 Python 内建函数,用于从控制台获取用户输入。它会暂停程序并显示提示信息(如果提供),用户输入的内容被视为字符串返回。基本语法是 `variable = input(prompt)`,其中 `prompt` 是可选提示信息。例如,`name = input("请输入您的姓名:")` 后,程序会等待用户输入,然后将输入的字符串赋值给 `name`。注意 `input()` 总是返回字符串,需手动转换为其他类型,且避免使用 `eval()` 处理用户输入以防止安全风险。
122 2
Python中input()函数
|
6月前
|
Python
|
Python
解决 sublime text3 运行python文件无法input的问题
解决 sublime text3 运行python文件无法input的问题
97 0
|
Python
Python输入函数input( )
Python输入函数input( )
61 0

相关实验场景

更多
下一篇
无影云桌面