PLatonG commited on
Commit
2f7b998
1 Parent(s): c5e6360

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -232,11 +232,11 @@ with gr.Blocks(fill_height = True, title="Expert Recommendations") as demo:
232
 
233
  birth_year = f"เกิดเมื่อปี พ.ศ. {int(birth_year)}"
234
 
235
- if int(age) >= 10 or int(age) <=15:
236
  age = f"มีอายุอยู่ในช่วง 10 ถึง 15 ปี"
237
- elif int(age) >=16 or int(age) <= 20:
238
  age = f"มีอายุอยู่ในช่วง 16 ถึง 20 ปี"
239
- elif int(age) >=21 or int(age) <= 25:
240
  age = f"มีอายุอยู่ในช่วง 21 ถึง 25 ปี"
241
  elif int(age) >=26:
242
  age = f"มีอายุอยู่ในช่วง 26 ปีขึ้นไป"
 
232
 
233
  birth_year = f"เกิดเมื่อปี พ.ศ. {int(birth_year)}"
234
 
235
+ if int(age) >= 10 and int(age) <=15:
236
  age = f"มีอายุอยู่ในช่วง 10 ถึง 15 ปี"
237
+ elif int(age) >=16 and int(age) <= 20:
238
  age = f"มีอายุอยู่ในช่วง 16 ถึง 20 ปี"
239
+ elif int(age) >=21 and int(age) <= 25:
240
  age = f"มีอายุอยู่ในช่วง 21 ถึง 25 ปี"
241
  elif int(age) >=26:
242
  age = f"มีอายุอยู่ในช่วง 26 ปีขึ้นไป"