现在位置: 首页 > Python 3 教程 > 正文

Python3 input() 函数

Python3 内置函数 Python3 内置函数

Python3.x 中 input() 函数接受一个标准输入数据,返回为 string 类型。

注意:在 Python3.x 中 raw_input() 和 input() 进行了整合,去除了 raw_input( ),仅保留了input( )函数,其接收任意任性输入,将所有输入默认为字符串处理,并返回字符串类型。

函数语法

input([prompt])

参数说明:

  • prompt: 提示信息

实例

input() 需要输入 python 表达式

>>>a = input("input:") input:123 # 输入整数 >>> type(a) <class 'str'> # 字符串 >>> a = input("input:") input:runoob # 正确,字符串表达式 >>> type(a) <class 'str'> # 字符串

input() 接收多个值

实例

#!/usr/bin/python
#输入三角形的三边长
a,b,c = (input("请输入三角形三边的长:").split())
a= int(a)
b= int(b)
c= int(c)

#计算三角形的半周长p
p=(a+b+c)/2

#计算三角形的面积s
s=(p*(p-a)*(p-b)*(p-c))**0.5

#输出三角形的面积
print("三角形面积为:",format(s,'.2f'))

以上实例执行输出结果为:

请输入三角形三边的长:3 4 5
三角形面积为: 6.00

更多内容

Python2.x input 与 raw_input() 说明

Python2.x 和 Python3.x 中 raw_input( ) 和 input( ) 区别

Python3 内置函数 Python3 内置函数