Python知识分享网 - 专业的Python学习网站 学Python,上Python222
Python使用input获取用户输入
匿名网友发布于:2023-09-11 14:43:04
(侵权举报)

Python 7天快速入门完整视频教程https://www.bilibili.com/video/BV1o84y1Z7J1

 

Python使用input获取用户输入

 

 

input()函数用于向用户生成一条提示,然后获取用户输入的内容。由于input()函数总会将用户输入的内容放入字符串中,因此用户可以输入任何内容,input()函数总是返回一个字符串。我们可以通过int() float()方法来转换类型。

案例:

 

"""
    使用input获取用户输入
"""

name = input("请输入您的姓名:")
print(name, type(name))

age = input("请输入您的年龄:")
age = int(age)
print(age, type(age))

height = input("请输入您的身高(cm):")
height = float(height)
print(height, type(height))

 

 

 

转载自: