#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
max = -sys.maxsize
min = sys.maxsize
contador = 0
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
contador = contador + 1
numero = int(linea)
if numero < min:
min = numero;
if numero > max:
max = numero;
except ValueError:
print 'Entrada inválida'
print 'Max: %d Min: %d'%(max,min)
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.