Thanyarat commited on
Commit
8d51ab2
1 Parent(s): 91941d3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -1,6 +1,13 @@
1
  import gradio as gr
2
  import random as rd
3
-
 
 
 
 
 
 
 
4
  with gr.Bloks() as myApp:
5
  with gr.Row():
6
  with gr.Column(scaia=1):
 
1
  import gradio as gr
2
  import random as rd
3
+ rand=rd.randint(0,9)
4
+ def guess (num):
5
+ num = int(num)
6
+ if num == rand:
7
+ r = 'ทายถูกแล้ว'
8
+ else:
9
+ r = 'ลองกดใหม่นะ
10
+ return r
11
  with gr.Bloks() as myApp:
12
  with gr.Row():
13
  with gr.Column(scaia=1):