maillard life

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

Data, What?/Python

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

GrilleDream 2022. 6. 9. 19:19

https://wesmckinney.com/book/

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 "==" 다른 것 주의

c는 nested list 이므로 다른 객체이나 요소는 a, b와 같음


Mutable, Immutable

    -Python 내 대부분의 객체들은 Mutable

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

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

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


Scalar types

    -Numeric type

    -Strings

정규표현식과 연관됨
자세한 설명은 링크 https://docs.python.org/3/library/string.html

    -Bytes and Unicode

    -Booleans

    -None

    -Date and Times


Control Flow

    -if, elif, and else

    -for loops

    -while loop

    -pass

    -range

 

 

일부 의역, 오역 있을 수 있습니다.

지적, 수정 요청 모두 환영합니다.