File size: 578 Bytes
70e59aa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import gradio as gr
import random

# 定義抽籤函數
def draw_lottery(max_number):
    if max_number <= 0:
        return "請輸入一個正整數"
    return random.randint(1, max_number)

# 創建 Gradio 介面
with gr.Blocks() as demo:
    with gr.Row():
        max_number_input = gr.Number(label="班級座號的最大值", value=40, precision=0)
        result_output = gr.Textbox(label="抽中的號碼")
    
    draw_button = gr.Button("抽籤")
    
    draw_button.click(draw_lottery, inputs=max_number_input, outputs=result_output)

# 啟動介面
demo.launch()