码迷,mamicode.com
首页 > 编程语言 > 详细

Python学习16之input函数

时间:2020-03-02 23:14:52      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:标准输入   数据   接受   pytho   整数   返回   input   str   python   

‘‘‘‘‘‘
‘‘‘
Input函数:
作用:接受一个标准输入数据
返回值:返回为 string 类型
使用:input()
‘‘‘
a=input("请输入一个整数")
print(a)
print(type(a))
‘‘‘
请输入一个整数123
123
<class ‘str‘>
‘‘‘
print(int(a)+1)

Python学习16之input函数

标签:标准输入   数据   接受   pytho   整数   返回   input   str   python   

原文地址:https://www.cnblogs.com/wsxcode/p/12398121.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!