Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Almahfouz
/
q2
like
0
Sleeping
App
Files
Files
Community
main
q2
/
app.py
Almahfouz
Create app.py
d07028b
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
163 Bytes
import
gradio
as
gr
def
greet
(
c
):
f = c*
9
/
5
+
32
return
"Temp in F: "
+ f +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()