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…
python有一个内置函数eval(),可以将字符串进行运行. 通过help(eval)查看帮助文档 Help on built-in function eval in module builtins: eval(source, globals=None, locals=None, /) Evaluate the given source in the context of globals and locals. The source may be a string representing a…
在一行中输入列表,输出列表元素的和. 输入格式: 一行中输入列表. 输出格式: 在一行中输出列表元素的和. 输入样例: [3,8,-5] 输出样例: 6 代码: a = eval(input()) total = 0 for i in range(0, len(a)): total = total + a[i] print(total)…