我用Python IDLE写了一个代码,其中有一个抽象类和一个继承该抽象类*的类(两个类都在同一个文件夹中)。效果很好。 我想将该代码复制并粘贴到PyCharm。我做了两张卡,一张带有抽象类,另一张带有继承该类的类,但出现此错误:
class Swords(Weapon):
TypeError: module.__init__() takes at most 2 arguments (3 given)
我很困惑,因为我没有更改代码。这是代码
第一张卡片:武器
from abc import ABC, abstractmethod
class Weapon(ABC):
@abstractmethod
def __init__(self, name):
self.name = name
第二张卡片:剑
import Weapon
class Swords(Weapon):
def __init__(self, name, attack_points, price):
super().__init__(name)
self.attack_points = attack_points
self.price = price
def info(self):
info = self.name + " is attack-weapon that increases attack points!"
return info
def __str__(self):
return "Sword name: {}\nSword attack: +{}\nSword price: {}\n".format(self.name,
self.attack_points,
self.price)
Elf_Sword = Swords("Elf Sword", 1, 50)
Fire_Sword = Swords("Fire Sword", 2, 80)
Space_Sword = Swords("Space Sword", 3, 120)
print(Elf_Sword)
请告诉我我在做什么错了?
答案 0 :(得分:4)
您可能将Weapon
类放在名为Weapon.py
的模块中,而您只是在导入模块,而不是导入类。
这里是否是美国广播公司都没关系。
作为一般的经验法则,
class Weapon:
pass
from weapon import Weapon
class Sword(Weapon):
pass
答案 1 :(得分:1)
您无法导入课程。您必须导入模块或这些模块中的类。
在您的情况下,语法为
${BranchToTest} $BranchToTest