python 스타일 가이드https://pep8.org/

 

PEP 8: The Style Guide for Python Code

When implementing ordering operations with rich comparisons, it is best to implement all six operations (__eq__, __ne__, __lt__, __le__, __gt__, __ge__) rather than relying on other code to only exercise a particular comparison. To minimize the effort invo

pep8.org

python 코딩을 어떠한 스타일로 해야하는지 확인할 수 있다. 

 

Python 변수값을 눈으로 확인할 수 있는 사이트 : https://pythontutor.com/

 

Python Tutor - Visualize Python, Java, C, C++, JavaScript, TypeScript, and Ruby code execution

VISUALIZE CODE EXECUTION Learn Python, Java, C, C++, JavaScript, and Ruby Python Tutor helps people overcome a fundamental barrier to learning programming: understanding what happens as the computer runs each line of code. You can use it to write Python, J

pythontutor.com

리스트, 튜플, 딕셔너리 데이타의 값 확인시 유용하다.

 

온라인 python 소스 테스트 : https://replit.com/

 

The collaborative browser based IDE

Replit is a simple yet powerful online IDE, Editor, Compiler, Interpreter, and REPL. Code, compile, run, and host in 50+ programming languages.

replit.com

리플릿 사이트에서, 파이슨 파일을 별로의 세팅을 하지 않고 테스트 할 수 있다.

다만 첫 시작 파일이 main.py 로 고정되어 있다.

 

python 개발 툴 : https://code.visualstudio.com/

 

Visual Studio Code - Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.

code.visualstudio.com

파이슨 개발 툴이 여러가지가 있지만 visual studio code 를 추천한다.

 

python 기본 문법 : https://wikidocs.net/6

 

01-2 파이썬의 특징

필자는 파이썬을 무척 좋아한다. 모든 프로그래밍 언어에는 각기 장점이 있지만 파이썬에는 다른 언어에서는 쉽게 찾아볼 수 없는 파이썬만의 독특한 매력이 있다. 파이썬의 특징을 ...

wikidocs.net

파이썬 기본 문법에 대해 설명 되어 있다. 처음 개발한다면 둘러보길 추천~

 

python 내장함수 : https://wikidocs.net/32

 

05-5 내장 함수

지금까지 파이썬으로 프로그래밍하기 위해 알아야 하는 것들을 대부분 공부했다. 이제 여러분은 원하는 프로그램을 직접 만들 수 있을 것이다. 하지만 그 전에 먼저 여러분이 만들 ...

wikidocs.net

 

python 작은 예제 : https://code.activestate.com/recipes/langs/python/

 

Popular Python recipes « ActiveState Code

 

code.activestate.com

 

'Python' 카테고리의 다른 글

Python 정규식  (0) 2022.01.15
Python list, tuple, dictionary, 리스트, 튜플, 딕셔너리  (0) 2022.01.15
Python 날짜, 스케쥴, process  (0) 2022.01.15
Python 숫자, 문자, type  (0) 2022.01.15
Python 특징  (0) 2022.01.15

+ Recent posts