Python 入門指南 5.0
exercise4206.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 35 36 37 38 39 40 41 42 43 44 45 | <!DOCTYPE html> <html> <head> <!-- 設定網頁編碼 --> <meta charset="utf-8"> <!-- 設定標題列文字 --> <title>Brython 練習</title> <!-- 引入 Brython 程式庫 --> <script src="https://cdn.jsdelivr.net/npm/brython@3/brython.min.js"> </script> <script src="https://cdn.jsdelivr.net/npm/brython@3/brython_stdlib.js"> </script> <!-- 引入 CSS 檔案 --> <link href="exercise4201.css" rel="stylesheet" type="text/css"/> <!-- 引入 exercise4308 程式 --> <script type="text/python" src="exercise4308.py"> </script> </head> <body id="body" onload="brython()"> <h1>美金匯率換算</h1> <p> <label for="rate">美金匯率</label> <input type="text" id="rate" /> </p> <p> <label for="rate">台幣</label> <input type="text" id="ntd" /> <input type="button" id="button" value="換算" /> </p> <p id="display"> </p> <div class="back"><a href="exercise4202.html">回目錄頁</a></div> </body> </html> <!-- 檔名: exercise4206.html 說明:《Python入門指南》的範例程式 網站: http://kaiching.org 作者: 張凱慶 時間: 2023 年 12 月 --> |