Python-TypeError:'

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python-TypeError:'相关的知识,希望对你有一定的参考价值。

BEGINNER,目前在Python3上进行编码,很抱歉,我正在测试的模型无法打扰。

在第3行的'str'和'int'的实例之间不支持TypeError:'

def main():
    age = int(input ('Enter you age'))
if age<18:
    print ('Sorry')
else:
    print ('Welcome')
main()
答案

您的缩进是错误的,请解决该问题!您的代码很好

def main():
    age = int(input ('Enter you age'))
    if age<18:
        print ('Sorry')
    else:
        print ('Welcome')
main()

对我来说很好用

Enter you age12
Sorry

enter image description here

以上是关于Python-TypeError:'的主要内容,如果未能解决你的问题,请参考以下文章

Python-TypeError: object() takes no parameters

Python-TypeError: not all arguments converted during string formatting

pom文件出现Element 'xxxxxxx' cannot have character [children],because the type's content typ

Python - TypeError: '...' 类型的对象没有 len()

Python- TypeError:无法将系列转换为 <class 'int'>

Python - TypeError:需要可迭代参数