[Book] Python for Data Analysis(3E) -2.5-

https://wesmckinney.com/book/python-basics.html
Python for Data Analysis, 3E - 2 Python Language Basics, IPython, and Jupyter Notebooks
This Open Access web version of Python for Data Analysis 3rd Edition is now available in Early Release and will undergo technical editing and copy-editing before going to print later in 2022. If you encounter any errata, please report them here. If you fin
wesmckinney.com
Operator

-"is" vs "==" 다른 것 주의

Mutable, Immutable
-Python 내 대부분의 객체들은 Mutable
--리스트, 딕셔너리, numpy 어레이, 대부분의 UDF type = 내부 데이터가 변경될 수 있음

-반면에 string, 튜플은 Immutable = 변경될 수 없음

-mutate할 수 있다고 반드시 mutable하게 만들 필요는 없음(부작용 줄이기 위해 가능하면 immutability 선호할 것)
Scalar types

-Numeric type

-Strings




-Bytes and Unicode

-Booleans


-None

-Date and Times



Control Flow
-if, elif, and else

-for loops



-while loop

-pass

-range

일부 의역, 오역 있을 수 있습니다.
지적, 수정 요청 모두 환영합니다.