Skip to content

Code sample for Asia University 1092 Advanced Computer Programming.

Notifications You must be signed in to change notification settings

as35396425/AU-1092-ACP-Sample

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

1092 Asia University Advanced Computer Programming Sample

Code sample for Asia University 1092 Advanced Computer Programming.

一些基本的問題先看下面的 注意 條目

Some simple problem try to find solution in Notice subject, at bottom of this page

目錄 | Index

4/9 第七週 | Week 7

檔案 | Files

資料夾 (File Directory)

課堂練習 | Exercise

作業 | Homework


3/26 第五週 | Week 5

檔案 | Files --- Week 5

資料夾 (File Directory)

課堂練習 | Exercise --- Week 5

作業 | Homework --- Week 5


3/19 第四週 | Week 4

檔案 | Files

資料夾 (File Directory)

課堂練習 | Exercise

  • Week4/README.md
  • Week4/ExerciseEn.py (Eng. Ver)
  • 作業 | Homework

    3/12 第三週 | Week 3

    檔案 | Files

    資料夾 (File Directory)

    課堂練習 | Exercise

  • Week3/Exercise.py
  • Week3/ExerciseEn.py (Eng. Ver)
  • 作業 | Homework

  • Week3/Homework.py
  • Week3/HomeworkEn.py (Eng. Ver)
  • 注意 | Notice

    針對 Python | For Python

    各程式需要用到的模組我會寫在程式碼開頭,檢查模組是否已安裝的方法如下
    The required modules in program, I wrote it on the top of the source code, to check the module are installed, follow the stpes below:

    執行程式後若終端機報下方錯誤碼,則代表模組 requests 尚未安裝
    Run .py file and if you see Terminal return this error message, that means module "requests" doesn't installed

    Traceback (most recent call last):
      File "<stdin>", line 1, in 
    ModuleNotFoundError: No module named 'requests'

    也可以在終端機中輸入
    You also can type the command below into Terminal
    pip show <模組名稱 (Module Name)>
    以下回傳訊息也是模組未安裝的意思
    If Terminal return the message below, it also means module doesn't installed
    WARNING: Package(s) not found: <模組名稱 (Module Name)>

    若要安裝模組,在終端機中輸入
    To install the module, type the command below into Terminal
    pip install <模組名稱 (Module Name)>
    若以上指令沒用,嘗試: If the command above not working, try this
    python -m pip install <模組名稱 Module Name>
    還是沒用的話,就要把 Python 重新安裝,且在安裝過程中勾選「Add Python to PATH」詳細可參考此連結
    If still not working, then you should reinstall Python, and while you installing, be sure you checked the box called something like "Add python to PATH". To know more detail you can found it in this link


    安裝完後再將電腦重新啓動
    Then reboot your computer when you finished install

    Author: 109021331 CYouLiao

    About

    Code sample for Asia University 1092 Advanced Computer Programming.

    Resources

    Stars

    Watchers

    Forks

    Releases

    No releases published

    Packages

    No packages published

    Languages

    • Python 99.6%
    • Shell 0.4%