python-如何尋找二維列表的最大值

data = [[1, 2], [3, 4]] max_item = max(max(row) for row in data) print(max_item) # 4
相關文章
相關標籤/搜索