品易云推流 关闭
文章详情页
文章 > Python基础教程 > python3怎么获取控制台输入的数据

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

头像

FXL

2020-08-14 09:36:292920浏览 · 0收藏 · 0评论

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));
关注

关注公众号,随时随地在线学习

本教程部分素材来源于网络,版权问题联系站长!

底部广告图