สอนเขียนภาษา Python แปลงอุณหภูมิ จาก องศาเซลเซียส (C) เป็น องศาฟาเรนไฮต์ (F) และแปลงกลับจาก F เป็น C สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง Python แปลงอุณหภูมิ จาก C เป็น F
try:
c = float(input("Please Enter temperature in celsius: "))
except:
c = 0
if c > 0:
f = ( c * 9 / 5 ) + 32
print('%.2f Celsius = %.2f Fahrenheit' %(c, f))
ผลลัพธ์
Please Enter temperature in celsius: 32
32.00 Celsius = 89.60 Fahrenheit
การแปลงองศาเซลเซียส (C) เป็น องศาฟาเรนไฮต์ (F) ใช้สูตร F = ( C x 9 / 5 ) + 32
ตัวอย่าง Python แปลงอุณหภูมิ จาก F เป็น C
try:
f = float(input("Please Enter temperature in fahrenheit: "))
except:
f = 0
if f > 0:
c = ( f - 32 ) * 5 / 9
print('%.2f Fahrenheit = %.2f Celsius' %(f, c))
ผลลัพธ์
Please Enter temperature in fahrenheit: 89.60
89.60 Fahrenheit = 32.00 Celsius
การแปลงองศาฟาเรนไฮต์ (F) เป็น งองศาเซลเซียส (C) ใช้สูตร C = ( F - 32 ) * 5 / 9