Python | リスト内で最大のアイテムと最小のアイテムを見つける方法 Python 2018.06.152018.07.18 iPython In [1]: prices = [100, 12.9, 70] In [2]: min(prices) Out[2]: 12.9 In [3]: max(prices) Out[3]: 100