Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ShahadFawaz99
/
Space2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cbc9feb
Space2
/
app.py
ShahadFawaz99
Create app.py
cbc9feb
verified
8 months ago
raw
Copy download link
history
blame
Safe
223 Bytes
import
gradio
as
gr
def
convert_to_fahrenheit
(
celsius
):
fahrenheit = celsius *
9
/
5
+
32
return
f"
{fahrenheit}
°F"
demo = gr.Interface(fn=convert_to_fahrenheit, inputs=
"text"
, outputs=
"text"
)
demo.launch()