概述
我想用input()输入一个整数,结果报错:
TypeError: ‘str’ object cannot be interpreted as an integer
原来input()返回的值是str,比如输入5,其实得到的是 ‘5’
其实只需要再用int()转换一下,就能得到我想要的整数了。
这里是查看input的help:
>>>help(input)
Help on built-in function input in module builtins:
input(prompt=None, /)
Read a string from standard input. The trailing newline is stripped.
The prompt string, if given, is printed to standard output without a
trailing newline before reading input.
If the user hits EOF (*nix: Ctrl-D, Windows: Ctrl-Z+Return), raise EOFError.
On *nix systems, readline is used if available.
最后
以上就是炙热丝袜为你收集整理的python中,用input()输入一个整数的全部内容,希望文章能够帮你解决python中,用input()输入一个整数所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复