smallest element in the list python | without using built-in function
Python Program to get list size n and n elements of list, then find the smallest element among those elements.
Sample Input 1:
5 5 7 9 3 1
Sample Output 1:
1
Program or Solution
l=list(map(int,input("Enter array elements:").split(" ")))
min1=l[0]
for i in range(1,len(l)):
if(l[i]<min1):
min1=l[i]
print(min1)
Program Explanation
Input: To get list of numbers seprated by space, use split(" ") method.
Split() method splits the numbers as seprate elements.
By default this methods are considered as string, since input() method returs string. Use map() function to convert all elements as integer and store it in list.
Process: Initially assign the element located at 0 to min using min = l[0].
using for loop visit each location serially from 1 to len(l)-1. if the element located in any position is lesser than min, then assign the element as min by using min = l[i] finally min holds the minimum value in the list.
Comments
Related Programs
- list input in python
- sum of list in python | without using built-in function
- Average of list in python | without using built-in function
- linear search in python
- largest element in the list python | without using built-in function
- Print all the numbers which are less than given key element from a given list.
- delete element in list python
- Revese the elements in list python
- Reverse the first half of list elements in python
- Reverse the second half of list elements in python
- list sort python
- list sort descending order python
- Python Program to sort half of the list elements in ascending order and next half in descending order.
- merging two lists in python
- Python Program to replace every element with the greatest element on right side
- circular list rotation in python