python3怎么获取控制台输入的数据

2020/09/27 08:30

python3获取控制台输入的数据的方法:可以利用input()函数来获取。python3为我们提供了input()函数,该函数用来接收一个标准输入数据,返回为string类型,使用方法如:【age = input()】。

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

(推荐教程:Python入门教程)

语法:

input([prompt])

参数prompt表示提示信息。

代码示例:

"""
接收控制台的输入
How old are you?
18
How tall are you ?
180
How much do you weigh?
50
So ,you are '18' old,'180' tall and '50' heavy,
 
python3的控制台输入函数时input();
"""
print("How old are you?");
 
age=input();
 
print("How tall are you ?");
 
height=input();
 
print("How much do you weigh?");
 
weight=input();
 
print("So ,you are %r old,%r tall and %r heavy," %(age,height,weight));

免费直播

    精选课程 更多

    注册电脑版

    版权所有 2003-2020 广州环球青藤科技发展有限公司