In this python tuple program, we will find the minimum value from a tuple.
Steps to solve the program
- Create a tuple.
- Find the minimum value from a tuple using min().
- Print the output.
tup = (36,5,79,25)
print("Minimum value: ",min(tup))
Output :
Minimum value: 5
1 thought on “Find the minimum value from a tuple”