如何创建__init__函数?

时间:2016-10-22 03:41:08

标签: python

这是说明:

1.在名为bag.py

的模块中定义名为Bag的类

2.定义一个 init 方法,该方法有一个参数,一个可重复使用的值的迭代值。 Writing Bag()构造一个空袋子。书写袋(['d','a','b','d','c','b','d'])构成一个包含一个'a',两个'b',一个'c'的包和三个's'。 Bag类中的对象应该只存储上面指定的字典:它不应该存储/操作任何其他自变量

from collections import defaultdict
from goody import type_as_str
from test.test_string import Bag

class Bag:
    def __init__(self, i):
        if len(i) == 0:
            self.bag = []
        for x in i:
            self.bag.append(x)




if __name__ == '__main__':
    #driver tests
    import driver
    driver.default_file_name = 'bsc1.txt'
#     driver.default_show_exception= True
#     driver.default_show_exception_message= True
#     driver.default_show_traceback= True
    driver.driver()

这是我得到的错误:

  7 # Test init, repr, and str
  8 *Error: b = Bag() raised exception TypeError: __init__() missing 1 required positional argument: 'i'
  9 *Error: repr(b) in ['Bag()','Bag([])'] raised exception NameError: name 'b' is not defined
 10 *Error: str(b) raised exception NameError: name 'b' is not defined
 11 *Error: b = Bag(['d','a','b','d','c','b','d']) raised exception AttributeError: 'Bag' object has no attribute 'bag'
 12 *Error: all((repr(b).count('\''+v+'\'')==c for v,c in dict(a=1,b=2,c=1,d=3).items())) raised exception NameError: name 'b' is not defined
 13 *Error: all((v+'['+str(c)+']' in str(b) for v,c in dict(a=1,b=2,c=1,d=3).items())) raised exception NameError: name 'b' is not defined

输入是:

# Test init, repr, and str
c-->b = Bag()
e-->repr(b) in ['Bag()','Bag([])']-->True
e-->str(b)-->Bag()
c-->b = Bag(['d','a','b','d','c','b','d'])
e-->all((repr(b).count('\''+v+'\'')==c for v,c in dict(a=1,b=2,c=1,d=3).items()))-->True
e-->all((v+'['+str(c)+']' in str(b) for v,c in dict(a=1,b=2,c=1,d=3).items()))-->True

我不知道如何制作 init 功能。因为第一个输入调用b = Bag(),whcih将始终引发Error:b = Bag()引发异常TypeError: init ()缺少1个必需的位置参数。谁能告诉我如何解决它?

3 个答案:

答案 0 :(得分:0)

第一个引发的例外:

您的c-->b = Bag()来电期待传递给Bag的参数。例如Bag(['f', 'o', 'o'])

第二个提出的例外:

如果您实际通过Bag构造函数传递参数,则长度将大于0且bag永远不会创建,因此您无法附加到它。我不确定你要做什么但是self.bag = []无论我的长度如何?

答案 1 :(得分:0)

您的init方法期望参数i初始化, 你的代码的另一个问题是self.bag永远不会初始化为列表,如果len(i)不为零,你可以,如果它没有被预先定义为列表,则附加到包。 下面的代码应符合您的要求

class Bag:
    def __init__(self, i=None):
        self.bag = []
        if i == None:
            pass # i is None, do nothing after create empty bag
        elif type(i)==list:
            self.bag.extend(i) # append whole list i into bag with extend method
        else:
            self.bag.append(i) # append single item i into bag 

# example
Emptybag = Bag()
Bag1 = Bag('item1') # Initialize with 1 item
Bag2 = Bag(['item1', 'item2']) # initialize with list of items

答案 2 :(得分:0)

如果您使用collections模块中的内置Counter类,那么事情可能会更简单。来自文档:

>>> c = Counter()                           # a new, empty counter
>>> c = Counter('gallahad')                 # a new counter from an iterable
>>> c = Counter({'red': 4, 'blue': 2})      # a new counter from a mapping
>>> c = Counter(cats=4, dogs=8)             # a new counter from keyword args