def calculate_average(temps): # 型なし。何でも渡せる total = 0.0 for index in range(len(temps)): total += temps[index] # 要素の型は実行時に毎回 ...