phreem commited on
Commit
9c80d46
1 Parent(s): 3f039aa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -11
app.py CHANGED
@@ -4,19 +4,19 @@ 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
  def answer():
12
- return 'เลขที่สุ่มได้ คือ '+str(rand)
13
  with gr.Blocks() as myApp:
14
  with gr.Row():
15
- with gr.Column(scale=1):
16
- inp = gr.Radio(choices=list(range=(10)),label='เลือก1หมายเลข')
17
- btn = gr.Button(value="เฉลย")
18
- with gr.Column(scale=1):
19
- out = gr.Textbox(label='ผลลัพธ์')
20
- inp.change(guess,inp,out)
21
- btn.click(fn=answer,outputs=out)
22
- myApp.launch()
 
4
  def guess(num):
5
  num = int(num)
6
  if num == rand:
7
+ r = 'ชมพู่'
8
  else:
9
+ r = 'มะละกอ'
10
  return r
11
  def answer():
12
+ return 'คำที่ได้ก็คือ !'+str(rand)
13
  with gr.Blocks() as myApp:
14
  with gr.Row():
15
+ with gr.Column(scale=1):
16
+ inp = gr.Radio(choices=list(range(10)),label='เลือก 1 หมายเลข')
17
+ btn = gr.Button(Value="เฉลย")
18
+ with gr.Column(scale=1):
19
+ out = gr.Textbox(label='ผลลัพธ์')
20
+ inp.change(guess,inp,out)
21
+ btn.click(fn=answer,outputs=out)
22
+ myApp.launch()