标签:trace bsp python nbsp span line 引号 屏幕 变量
python中,通过input函数获取用户键盘输入
input函数的参数是字符串,它是屏幕提示语
# 变量赋值,=两边空格可有可无 >>> user = input(‘username: ‘) # 用户输入内容保存到变量user中 username: tom >>> user # 使用变量 ‘tom‘ # input读入的数据都是字符串类型。相同类型的数据才能运算 >>> num = input("number: ") number: 10 >>> num + 5 # num是字符串,不能和数字进行运算 Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: must be str, not int >>> type(num) # 查看num的类型 <class ‘str‘> >>> int(num) + 5 # int函数将字符串转成整数 15 >>> num + str(5) # str函数将对象转成字符串 ‘105‘ >>> num + "5" #用引号都会变成字符串 ‘105‘
标签:trace bsp python nbsp span line 引号 屏幕 变量
原文地址:https://www.cnblogs.com/Zhangtao-linux/p/14821865.html