#やりたいこと
平均を求めたい。
##コード
python
1cP1 = [] 2cP = 0 3平均() 4def 平均(): 5 print("") 6 print("平均算出モード") 7 print("") 8 cP1 = [] 9 ans = input("データを入力") 10 ans = int(ans) 11 while type(ans) == "int": 12 ans = input("データを入力") 13 if type(ans) == "int": 14 cP1.append(ans) 15 print(cP1) 16 ave = sum(cP1) / len(cP1) 17 ave = str(ave) 18 ans = str(ans) 19 print("平均は" + ans)
###エラー
pythonのファイルは「study 2」です。
Traceback (most recent call last): File "D:\study 2.py", line 30, in <module> 平均() File "D:\study 2.py", line 16, in 平均 ave = sum(cP1) / len(cP1) ZeroDivisionError: division by zero
回答4件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。