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.
私はpythonが初めてで、リストを操作しようとしています。関数が整数のリストを受け入れ、リスト内の最大の整数を返すようにするにはどうすればよいですか?
使用max機能:
max
>>> L=[2,-7,3,3,6,2,5] >>> L [2, -7, 3, 3, 6, 2, 5] >>> max(L) 6