#!/usr/bin/python
# -*- coding: utf-8 -*-
contador = 0
lista_num = []
while True:
try:
linea = raw_input('Introduzca un número ')
if linea == 'fin':
if contador == 0:
print('Introduzca como mínimo un número')
continue
else:
break
lista_num.append(int(linea))
contador = contador + 1
except ValueError:
print 'Entrada inválida'
print 'Máximo: %d' % max(lista_num)
print 'Mínimo: %d' % min(lista_num)
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.