加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

在Python中测试变量类型

发布时间:2020-12-20 13:02:02 所属栏目:Python 来源:网络整理
导读:我正在为’Room’类创建一个初始化函数,并发现该程序不接受我对输入变量进行的测试. 为什么是这样? def __init__(self,code,name,type,size,description,objects,exits): self.code = code self.name = name self.type = type self.size = size self.descri
我正在为’Room’类创建一个初始化函数,并发现该程序不接受我对输入变量进行的测试.

为什么是这样?

def __init__(self,code,name,type,size,description,objects,exits):
    self.code = code
    self.name = name
    self.type = type
    self.size = size
    self.description = description
    self.objects = objects
    self.exits = exits
            #Check for input errors:
    if type(self.code) != type(str()):
        print 'Error found in module rooms.py!'
        print 'Error number: 110'
    elif type(self.name) != type(str()):
        print 'Error found in module rooms.py!'
        print 'Error number: 111'
    elif type(self.type) != type(str()):
        print 'Error found in module rooms.py!'
        print 'Error number: 112'
    elif type(self.size) != type(int()):
        print 'Error found in module rooms.py!'
        print 'Error number: 113'
    elif type(self.description) != type(str()):
        print 'Error found in module rooms.py!'
        print 'Error number: 114'
    elif type(self.objects) != type(list()):
        print 'Error found in module rooms.py!'
        print 'Error number: 115'
    elif type(self.exits) != type(tuple()):
        print 'Error found in module rooms.py!'
        print 'Error number: 116'

当我运行这个时,我收到此错误:

Traceback (most recent call last):
  File "/Users/Jasper/Development/Programming/MyProjects/Game Making Challenge/Europa   I/rooms.py",line 148,in <module>
    myRoom = Room(101,'myRoom','Basic Room',5,'<insert description>',myObjects,myExits)
  File "/Users/Jasper/Development/Programming/MyProjects/Game Making Challenge/Europa I/rooms.py",line 29,in __init__
    if type(self.code) != type(str()):
TypeError: 'str' object is not callable

—-感谢您的帮助,但是:—–

这适用于isinstance(item,list)或isinstance(item,tuple)吗?

解决方法

没有回答“为什么”,但是

> str本身已经是一种类型了.你可以使用type(self.code)!= str>但更好的方法是使用isinstance(self.code,str).

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读