Python 入門指南 5.0
exercise1901.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # 計數的全域變數 count = 1 # 印出全域變數 def print_count(): print(count) # 執行部分 if __name__ == "__main__": print_count() # 檔名: exercise1901.py # 說明:《Python入門指南》的練習 # 網站: http://kaiching.org # 作者: 張凱慶 # 時間: 2023 年 10 月 |