Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| def convert_celsius_to_fahrenheit(celsius): | |
| fahrenheit = celsius * 9 / 5 + 32 | |
| return f"{celsius}°C is equal to {fahrenheit}°F" | |
| demo = gr.Interface(fn=convert_celsius_to_fahrenheit, inputs="number", outputs="text") | |
| demo.launch() |