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)

相关文章
|
8月前
python-input()函数
python-input()函数
77 2
|
存储 Python
【Python】(四)input() 函数
【Python】(四)input() 函数
393 0
【Python】(四)input() 函数
|
4月前
|
Python Windows
Python:执行py命令,提示: Can‘t find a default Python.
Python:执行py命令,提示: Can‘t find a default Python.
|
4月前
|
开发者 Python
Python 中的 Input 函数及其实现机制
Python 中的 Input 函数及其实现机制
63 0
|
5月前
|
JavaScript 前端开发 Python
成功解决:Can‘t find Python executable “python“, you can set the PYTHON env variable.
这篇文章分享了作者在运行前端Vue项目时遇到的关于Python执行环境的问题和解决方法。问题是由于找不到Python可执行文件导致的编译错误,解决方法包括安装编译环境、卸载并重新安装出现问题的`node-sass`包,并重新执行`npm install`和`npm run dev`。
成功解决:Can‘t find Python executable “python“, you can set the PYTHON env variable.
|
5月前
|
存储 安全 数据安全/隐私保护
Python的input语句
Python的input语句
|
8月前
|
Python
Python 使用type()函数
【5月更文挑战第10天】
90 4
|
8月前
|
安全 Python
Python中input()函数
【4月更文挑战第3天】,`input()` 是 Python 内建函数,用于从控制台获取用户输入。它会暂停程序并显示提示信息(如果提供),用户输入的内容被视为字符串返回。基本语法是 `variable = input(prompt)`,其中 `prompt` 是可选提示信息。例如,`name = input("请输入您的姓名:")` 后,程序会等待用户输入,然后将输入的字符串赋值给 `name`。注意 `input()` 总是返回字符串,需手动转换为其他类型,且避免使用 `eval()` 处理用户输入以防止安全风险。
162 2
Python中input()函数
|
8月前
|
Python
Python的type()函数
Python的type()函数
Python的type()函数
|
Python
Python输入函数input( )
Python输入函数input( )
74 0