警告: 私は 10 分間ずっと Python を学んでいるので、ばかげた質問で申し訳ありません!
次のコードを作成しましたが、次の例外が発生します。
メッセージ ファイル名 行位置 トレースバック ノード 31 例外.TypeError: このコンストラクターは引数を取りません
class Computer:
name = "Computer1"
ip = "0.0.0.0"
screenSize = 17
def Computer(compName, compIp, compScreenSize):
name = compName
ip = compIp
screenSize = compScreenSize
printStats()
return
def Computer():
printStats()
return
def printStats():
print "Computer Statistics: --------------------------------"
print "Name:" + name
print "IP:" + ip
print "ScreenSize:" , screenSize // cannot concatenate 'str' and 'tuple' objects
print "-----------------------------------------------------"
return
comp1 = Computer()
comp2 = Computer("The best computer in the world", "27.1.0.128",22)
何かご意見は?