fork(2) download
  1. lista = ['4', '07', '08', '2017', '364', '355673087875675']
  2. max = float('-inf')
  3. for item in lista:
  4. item = int(item)
  5. if item > max:
  6. max = item
  7. print(max)
  8.  
  9. #https://pt.stackoverflow.com/q/257905/101
Success #stdin #stdout 0.03s 9284KB
stdin
Standard input is empty
stdout
355673087875675