lampongyuen commited on
Commit
4531761
·
1 Parent(s): 876df0a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ def greet(name, is_morning, temperature_in_Fahrenheit):
5
  salutation = "Good morning" if is_morning else "Good evening"
6
  celsius = (temperature_in_Fahrenheit - 32)*5/9
7
  celsius = round(celsius,2)
8
- greeting = f"{salutation} {name}. The temperate is {temperature} Fahrenheit and {celsius} degree Celsius"
9
  return greeting
10
 
11
  demo = gradio.Interface(
 
5
  salutation = "Good morning" if is_morning else "Good evening"
6
  celsius = (temperature_in_Fahrenheit - 32)*5/9
7
  celsius = round(celsius,2)
8
+ greeting = f"{salutation} {name}. The temperate is {temperature_in_Fahrenheit} Fahrenheit and {celsius} degree Celsius"
9
  return greeting
10
 
11
  demo = gradio.Interface(