Python lectures for begineers
Chapter # | Title | Notebook | Google Colab |
---|---|---|---|
1 | Hello world! | Link | |
2 | Datatypes and Operators:資料型態與運算子 | Link | |
3 | Methods and Functions:方法與函式 | Link | |
4 | Collections:集合物件 | Link | |
5 | Control flows and Iterables:流程控制與疊代 | Link | |
6 | Functions:函式 | Link | |
7 | Classes:類別 | Link | |
8 | Miscellaneous:其餘補充說明 | Link |
Lock dependencies before submitting changes:
# Freeze into requirements.txt with Poetry
poetry export -f requirements.txt --output requirements.txt
# Use dephell to convert between different formats
# Convert from Poetry (pyproject.toml) to Pipfile
dephell deps convert --from-format=poetry --from-path=pyproject.toml --to-format=pipfile --to-path=Pipfile
# Convert from Poetry Lock (poetry.lock) to Pipfile.lock
dephell deps convert --from-format=poetrylock --from-path=poetry.lock --to-format=pipfilelock --to-path=Pipfile.lock
Python-101 by Violet Vivirand is licensed under CC BY-NC-SA 4.0