1. Home
  2. Docs
  3. numpy
  4. max () ফাংশন

max () ফাংশন

max () ফাংশন একটি অ্যারের উপাদানগুলির সর্বোচ্চ value প্রদান করে।

import numpy as np

data = np.array([[1],[2],[3]])

print(data.max())
Python

Output:

3
Python

How can we help?