fork download
  1. temps = [21, 22, 20, 19, 23, 24, 22]
  2.  
  3. print(min(temps)) # ең төмен
  4. print(max(temps)) # ең жоғары
  5. print(sum(temps)/len(temps)) # орташа
Success #stdin #stdout 0.02s 9212KB
stdin
Standard input is empty
stdout
19
24
21.571428571428573