Skip to content

ტემპერატურების კონვერტაცია

ტემპერატურების კონვერტაცია

ცელსიუსიდან ფარენჰაიტზე - Celsius to Fahrenheit

ცვლადით

C_F_Variable.py
1
2
3
4
5
6
7
temp_c = 17

temp_f = temp_c * 9 / 5 + 32

print(temp_f)

#შედეგი 62.6

ციკლით სიაში

C_F_Loop_List.py
1
2
3
4
5
6
7
templist_c = [17, 19, 24, 21, 16]

for temp_c in templist_c:

    temp_f = temp_c * 9 / 5 + 32

    print(temp_f)