Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def strtolist(string) :
- lista = []
- while True:
- x = string.find(',')
- if x == -1:
- num = string
- lista.append(int(num))
- break
- num = string[0:x]
- lista.append(int(num))
- string = string[:0] + string[x+1:]
- return lista
- def maiornum(lista) :
- r=0
- for n in range(0,len(lista)):
- if lista[n]>r :
- r=lista[n]
- return r
- numeros = []
- numeros = input('Digite uma lista de numeros (separados por ,): ') #Ex: 2,5,3,4,9,1
- maiornum(strtolist(numeros))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement