起きたエラー
python
1cannot unpack non-iterable int object 2
コード
python
1 2class Human(): 3 def __init__(self, name): 4 self.name = name 5 6 def face(self, eye, nose, mouth): 7 for name, eye, nose, mouth in self.name, eye, nose, mouth: 8 x = '私の名前は{0}で、目が{1}つあって、鼻が{2}つあって、口が{3}あります。'.format(self.name, eye, nose, mouth) 9 return x 10
問題の理由が調べてもわからないのでご教授いただきたいです。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/31 09:37