0
Finding the maximum number from a list inputted by user!!
I want to write a program where user can input a list of numbers as he want and then he will get the maximum value among those numbers.
1 Antwort
+ 1
Python have already builtin functions for those. See from this numaric functions topic.
Simple take input, print max(list)
https://www.sololearn.com/learn/Python/2456/