Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|
236 |
age = f"มีอายุอยู่ในช่วง 10 ถึง 15 ปี"
|
237 |
-
elif int(age) >=16
|
238 |
age = f"มีอายุอยู่ในช่วง 16 ถึง 20 ปี"
|
239 |
-
elif int(age) >=21
|
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 ปีขึ้นไป"
|