Python 入門指南 5.0

exercise4202.html

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
    <!-- 設定網頁編碼 -->
    <meta charset="utf-8">
    <!-- 設定標題列文字 -->
    <title>Brython 練習</title>
    <!--  引入 CSS 檔案 -->
    <link href="exercise4201.css" rel="stylesheet" type="text/css"/>
</head>

<body>
    <h1>目錄</h1>
    
    <div>
        <ul>
            <li><a href="exercise4203.html">歡迎訊息</a></li>
            <li><a href="exercise4204.html">時鐘</a></li>
            <li><a href="exercise4205.html">計時器</a></li>
            <li><a href="exercise4206.html">匯率換算</a></li>
            <li><a href="exercise4207.html">計算機</a></li>
            <li><a href="exercise4208.html">擲骰子</a></li>
            <li><a href="exercise4209.html">猜數字</a></li>
            <li><a href="exercise4210.html">鬥獸棋</a></li>
        </ul>
    </div>
</body>
</html>

<!-- 檔名: exercise4202.html
     說明:《Python入門指南》的範例程式
     網站: http://kaiching.org
     作者: 張凱慶
     時間: 2023 年 12 月  -->

回到練習題目
上一頁 exercise4201.css
回 Python 入門指南 5.0 首頁
下一頁 exercise4203.html
回 Python 教材首頁
回程式語言教材首頁