Write A Simple Python Program To Find The Maximum Of Any Number Of Numbers As Defined By The User.
Answers
Answered by
0
Answer:
input_string = input("Enter a list element separated by space ")
list = input_string.split()
print("printing the element of input list")
print(list)
print("Largest element is:", max(list))
Explanation:
Similar questions
Physics,
5 months ago
Science,
5 months ago
Computer Science,
10 months ago
Math,
10 months ago
Biology,
1 year ago