Computer Science, asked by bhavyamehta0502, 1 month ago

How to print min(), max(), sum() using list function in python..?​

Answers

Answered by saranyagopi
0

Answer:

# max()

 

# printing the maximum of 4,12,43.3,19,100

print("Maximum of 4,12,43.3,19 and 100 is : ",end="")

print (max( 4,12,43.3,19,100 ) )

To print the answer is :

Maximum of 4,12,43.3,19 and 100 is : 100

Similar questions