Greatest among four numbers
Input
5
3
7
2
s = (str(input("Enter few numbers separated by SPACE: "))).split(" ") nums=[] for r in range(0,len(s)): nums.append(int(s[r])) MaxNum = max(nums) print("Max Number is: ",MaxNum)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment