GUI / app.py
unim4er's picture
Update app.py
d85dcc4
raw
history blame
327 Bytes
import gradio as gr
import random as rd
with gr.Blocks() as myApp:
with gr.ROW():
with gr.Column(scale=1):
inp = gr.Radio (CHOICES=list(range(10)),lable= 'เลือก 1 หมายเลข'
with gr.Column(scale=1):
out= gr.textbox(lable='ผลลัพธ์')
myApp.launch()