“Celcius ke Fahrenheit di Python” Kode Jawaban

Cara mengubah Fahrenheit menjadi Celcius di Python


#!/usr/bin/env python
Celsius = int(raw_input("Enter a temperature in Celsius: "))

Fahrenheit = 9.0/5.0 * Celsius + 32

print "Temperature:", Celsius, "Celsius = ", Fahrenheit, " F"
Harry the Programmer

Celcius ke Fahrenheit di Python

def farh(cel):
    return (cel *(9/5)) + 32
  while True:
c = int(input("Enter celcius to convert in farhrenhite :"))
f = farh(c)
print("Fahreheit Temperature is " + str(f))
Coding boy Hasya

Cara mengubah Fahrenheit menjadi Celcius di Python

#!/usr/bin/env python
Fahrenheit = int(raw_input("Enter a temperature in Fahrenheit: "))

Celsius = (Fahrenheit - 32) * 5.0/9.0

print "Temperature:", Fahrenheit, "Fahrenheit = ", Celsius, " C"
Harry the Programmer

Kode Python untuk mengonversi Celcius menjadi Fahrenheit

c=  int(input(" Temperature in Centigrade: "))
f= (9/5*(int(c))) +32
print(" Temperature in Fahrenheit: ", f)
MD. SHARIFUL ISLAM

Jawaban yang mirip dengan “Celcius ke Fahrenheit di Python”

Pertanyaan yang mirip dengan “Celcius ke Fahrenheit di Python”

Lebih banyak jawaban terkait untuk “Celcius ke Fahrenheit di Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya