ej5.1.py

#!/usr/bin/python # -*- coding: utf-8 -*- contador = 0; sumatorio = 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 numero = int(linea) contador = contador + 1 sumatorio = sumatorio + numero except ValueError: print 'Entrada inválida' print '%d %d %.2f'%(sumatorio,contador,float(sumatorio)/contador)

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.