Python 入門指南 5.0
exercise4401.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 | # 從 Brython 引入 document 並以 doc 為別名
from browser import document as doc
# 從 exercise2303 引入 Dice
from exercise2303 import Dice
# 擲骰子
def roll_dice(event):
d1 = Dice()
d2 = Dice()
total = d1.point + d2.point
doc["dice1"].text = f"{d1}"
doc["dice2"].text = f"{d2}"
doc["display"].text = f"擲出點數為 {total}"
# 按鈕註冊事件
doc["run"].bind("click", roll_dice)
# 檔名: exercise4401.py
# 說明:《Python入門指南》的練習
# 網站: http://kaiching.org
# 作者: 張凱慶
# 時間: 2023 年 12 月
|