用户交互
Posted lipandeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用户交互相关的知识,希望对你有一定的参考价值。
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‘>
以上是关于用户交互的主要内容,如果未能解决你的问题,请参考以下文章