Kenta-K
@Kenta-K

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

python3 サイコロ

解決したいこと

python3 サイコロをN個振った時の出目の和を求めたい
うまくいかない

該当するソースコード

N = int(input()) # サイコロの数
score = input().rstrip().split() # 実際の要素(サイコロの出目)
data = [] # 空リスト用意
data.append(score)
length = len(data)
listSum = 0

for i in range(length):
listSum = listSum + data
print(listSum)

0

1Answer

そんなに難しく書かなくとも、以下で十分です。

N = input()
print(sum(map(int, input().split())))
0Like

Comments

  1. @Kenta-K

    Questioner

    ありがとうございます
    mapというのはなんですか 地図?

Your answer might help someone💌