Input是个内建函数: >>> input <built-in function input> >>> 具体用法:接收用户输入的内容,输入的字符串,接收到就是字符串:输入的是数字,接收的就是数字 >>> name = input("please input your name:") please input your name:python >>> name 'python' >>&g…
input()以字符串的方式获取用户输入: >>> x = input() 4.5 >>> type(x) <class 'str'> >>> y = input() Do you love python? >>> type(y) <class 'str'> 输入的字符串可以通过运算符进行连接.复制等操作: >>> x = input() abc >>> x * 3 'abc…