本文為python自學紀錄,有了鐵人賽經驗,決定好好的來學習python,並且從基礎開始~
1. print使用
#Day 01 練習 印出"Hello, World
print("Hello, World!")
2. 註解Comments
#這是單行註解
"""
這是多行註解
"""
3. 資料類型 Data Types
- Text Type: str
- Numeric Types: int, float, complex
- Sequence Types: list, tuple, range
- Mapping Type: dict
- Set Types: set, frozenset
- Boolean Type: bool
- Binary Types: bytes, bytearray, memoryview
- None Type: NoneType