Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
リストの要素の合計を取得するにはどうすればよいですか? つまり、
f = [1,8,3] sum(f)=12?
ご想像のとおりです sum(f)。なぜ試さなかったのですか?
sum(f)
>>> f = [1,8,3] >>> sum(f) 12