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

python

python3" title="python3">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));

以上是 python3怎么获取控制台输入的数据 的全部内容, 来源链接: utcz.com/z/529622.html

回到顶部