본문 바로가기
Research/Python

Python_학습자료 모음

by RIEM 2023. 6. 7.

Documentation

  • Official Python 3 Documentation - "official"/technical explanation of what a particular function/operator does, examples of correct syntax, what the various libraries are, etc.
  • PEP 8 - Style Guide for Python Code - learn what is good and bad style in Python

Textbooks

Tutorials

Debugging

  • Python Tutor - an excellent way to actually visualize how the interpreter actually reads and executes your code
  • DiffChecker - compares two sets of text and shows you which lines are different
  • Debugging in Python - steps you can take to try to debug your program

Software

Other Q&A

  • Stack Overflow - a large Q&A forum for programming concepts (not just Python). Try searching here before you post on the edX forum, and you may find that someone has already answered your question.

More practice problems

  • Python Challenge - a series of puzzles you can try to test your Python abilities
  • Project Euler - additional programming challenges you can try once your Python knowledge becomes stronger; problems are sorted by increasing difficulty
  • Coding Bat - problems you can solve within an online interpreter
  • Codewars - improve your skills by training on real code challenges

댓글