카테고리 없음

Python 자료 링크 총 정리

stringbottle 2021. 7. 14. 09:05

대학원에서 연구를 수행하다 보니, 딥러닝 관련된 연구를 수행할 일이 많아졌고, 자연스레 TensorFlow, PyTorch 등 강력한 딥러닝 프레임워크를 사용하기 위하여, Python을 배우게 되었다.

이제는 체계적으로 Python에 대하여 정리해야겠다는 생각이 들어서 목차를 정리하고 관련 링크도 모아보려한다.

!!참고하면 좋은 페이지들!!

1. W3 schools
2. Programiz
3. Google' Python Class

  1. Download & Installation
    1. Official Python Webiste
    2. Anaconda
  2. Variable Types
    • String
      1. How to create a string
      2.  
    • Variable
    • Dictionary
    • Tuple
    • List
  3. Control Structures
  • Boolean & Comparison
  • If statements
  • else statements
  • Boolean logic
  • while loops
  • for loops
  • range
  1. Function & Modules
  • Functions
  • Comment & Docstrings
  • Standard Libraries & pip
  1. Exceptions & Files
  • Exception Handling
  • finally
  • Raising Exception
  • Assertion
  • Opening files
  • Reading files
  • Writing files
  • Working with files
  1. Functional Programming
  • Functional Programming
  • Lambdas
  • Map & filters
  • Generator
  • Decorator
  • Recursion
  • Set
  • Itertools
  1. Objective Oriented Programming
  • Class
  • Inheritance
  • Magic method
  • Object lifecycle
  • Data hiding
  • Class & static method
  • Properties
  1. Regular Expression
  • Regular Expression
  • Simple metacharacter
  • Character class
  1. Pythonicness & Packaging
  • The zen of Python
  • PEP
  • More on Function Arguments
  • Tuple unpacking
  • Ternary Operator
  • More on else statements

Python Icon