标签:pre style 函数 bsp color 数据类型 返回 结果 size
input()函数
1.等待输入;
2.将输入的内容赋值给了等于号前面的变量;
3.input返回的数据类型是str。
1 name = input(‘your name:‘) 2 print(‘welcom {0}‘.format(name), type(name)) 3 4 执行结果 5 your name:lipandeng 6 welcom lipandeng <class ‘str‘>
标签:pre style 函数 bsp color 数据类型 返回 结果 size
原文地址:https://www.cnblogs.com/lipandeng/p/9678290.html