Python Program to find Maximum Value of an Array

You are Here:

Find Maximum Value of an Array

In the following example, we will find the maximum value of an array (arr).

Example

Python Compiler
arr = [1, 2, 3, 4, 5] max = arr[0] for i in range(0, 5): if(max < arr[i]): max = arr[i] print("Maximum value of Array: %d" % max)

Output

Maximum value of Array: 5

In the following example, we will get any five integer values from the user and return the maximum value among those.

Example

Python Compiler
arr = [] # number of elements as input print("Enter any 5 (int) numbers: ") # iterating till the range for i in range(0, 5): ele = int(input()) arr.append(ele) max = arr[0] for i in range(0, 5): if(max < arr[i]): max = arr[i] print("Maximum value of Array: %d" % max)

Output

Enter any 5 (int) numbers: 4 7 1 25 8 Maximum value of Array: 25

Reminder

Hi Developers, we almost covered 90% of String functions and Interview Question on Python with examples for quick and easy learning.

We are working to cover every Single Concept in Python.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author