uebung1 #1

Open
cassanclaudi wants to merge 2 commits from uebung1 into master
Showing only changes of commit d5e6e72775 - Show all commits

View File

@ -0,0 +1,9 @@
def high_and_low(numbers):
s = numbers.split()
lst = []
for i in s:
lst.append(int(i))
lst.sort()
return str(lst[-1]) + " " + str(lst[0])