Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- numlist = int(input('Enter a series of 20 numbers?\n'))
- lowestnum = min(numlist)
- highestnum = max(numlist)
- total = sum(numlist)
- ave = float(sum(numlist)) / len(numlist)
- print (lowestnum)
- print (highestnum)
- print (total)
- print (ave)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement