Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/10/2006, 19:39
GermanBsAs
 
Fecha de Ingreso: septiembre-2004
Mensajes: 252
Antigüedad: 20 años, 3 meses
Puntos: 0
Código:
german@Debian:~$ python
Python 2.4.4c0 (#2, Jul 30 2006, 15:43:58)
[GCC 4.1.2 20060715 (prerelease) (Debian 4.1.1-9)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> temperatura=list()
>>> for i in range (10):
...     temp=int(raw_input('Temperatura: '))
...     temperatura.append(temp)
...
Temperatura: 11
Temperatura: 23
Temperatura: 55
Temperatura: 11
Temperatura: 09
Temperatura: 24
Temperatura: 26
Temperatura: 22
Temperatura: 17
Temperatura: 19
>>> temperatura
[11, 23, 55, 11, 9, 24, 26, 22, 17, 19]
>>> print len(temperatura)
10
>>> acumulador=0
>>> for elemento in temperatura:
...     acumulador+=elemento
...
>>> print acumulador/(len(temperatura)) # promedio
21
>>> print max(temperatura) #mayor
55
>>> print min(temperatura) #menor
9
>>>