degrees = []
for temp in range(10, 61, 5):
degrees.append(temp)
for el in degrees:
print(9 * el // 5 + 32)
Объяснение:
degrees = []
for temp in range(10, 61, 5):
degrees.append(temp)
for el in degrees:
print(9 * el // 5 + 32)
Объяснение: