CoolFace
Apppublic

rabbittttt/GUI

sourceHugging Faceupdated 4y agoView on Hugging Face
0likes
app.py18 linesDownload Raw Back to root
1import gradio as gr2import random as rd3rand = rd.randint(0,9)4def guess(num):5    num = int(num)6    if num == rand:7        r = 'ทายถูกแล้ว'8    else:9        r = 'ลองกดใหม่นะ'10    return r11with gr.Blocks() as myApp:12    with gr.Row():13          with gr.Column(scale=1):14              inp = gr.Radio(choices=list(range(10)),label='เลือก 1 หมายเลข')15          with gr.Column(scale=1):16              out = gr.Textbox(label='ผลลัพธ์')17          inp.change(guess,inp,out)    18myApp.launch()