파이썬 코드 컨벤션 정리
Naming Conventions
def get_text()
def get_Text()
def Get_Text()
def Get_text()
text
text_length
Text
text_Length
Text_length
g_text
g_text_length
G_text
g_Text_length
g_text_Length
dataset.py
text_style.py
Dataset.py
text_Style.py
- 클래스명 (대문자 시작 및 대문자로 단어 구분)
class VideoCapture()
class VideoWriter()
class videoCapture()
class Video_writer()
PATH
WINDOW_SIZE
Path
window_SIZE
들여쓰기
x = y
x = y
Imports
- import 줄에 한개의 모듈 또는 라이브러리 임포트하기
import os
import sys
import sys, os
- 하지만 from 사용시 여러가지 모듈 또는 라이브러리 사용가능
from subprocess import Popen, PIPE
표현식, 조건식의 공백
spam(ham[1], {egg: 2})
spam( ham[ 1 ], { eggs: 2} )
- ,와 닫는 괄호( ")" ) 사이 공백 최소화
foo = (0,)
bar = (0, )
if x == 4: print x, y; x, y = y, x
if x == 4 : print x , y ; x , y = y , x
예외
ham[1:9], ham[1:9:3], ham[:9:3], ham[1::3], ham[1:9:]
ham[lower:upper], ham[lower:upper:], ham[lower::step]
ham[lower+offset : upper+offset]
ham[: upper_fn(x) : step_fn(x)], ham[:: step_fn(x)]
ham[lower + offset : upper + offset]
ham[lower + offset:upper + offset]
ham[1: 9], ham[1 :9], ham[1:9 :3]
ham[lower : : upper]
ham[ : upper]
- 열린 괄호 ( "(" ) 전에 함수 또는 리스트 사이 공백 최소화
spam(1)
spam (1)
- 열린 괄호 ( "[" ) 전에 함수 또는 리스트 사이 공백 최소화
dct['key'] = lst[index]
dct ['key'] = lst [index]
- "=" 연산자 사용 후 숫자 또는 문자열 정렬을 위한 최대 공백은 1칸
x = 1
y = 2
long_variable = 3
x = 1
y = 2
long_variable = 3
- 바이너리 연산자 사용 전&후 1칸 공백 사용 (계산해야하는 우선순위가 높은 숫자 또는 변수 사이의 공백은 최소화 되어야한다.)
i = i + 1
submitted += 1
x = x*2 - 1
hypot2 = x*x + y*y
c = (a+b) * (a-b)
i=i+1
submitted +=1
x = x * 2 - 1
hypot2 = x * x + y * y
c = (a + b) * (a - b)
함수 공백
- 함수의 인자값 또는 반환값에 쓰이는 "=" 연산자 뒤로 공백은 필요없음
def complex(real, imag=0.0):
return magic(r=real, i=imag)
def complex(real, imag = 0.0):
return magic(r = real, i = imag)
if foo == 'blah':
do_blah_thing()
if foo == 'blah': do_blah_thing()
if foo == 'blah': do_blah_thing()
for x in lst: total += x
while t < 10: t = delay()
if foo == 'blah': do_blah_thing()
else: do_non_blah_thing()
try: something()
finally: cleanup()
do_one(); do_two(); do_three(long, argument,
list, like, this)
if foo == 'blah': one(); two(); three()
do_one()
do_two()
do_three()
do_one(); do_two(); do_three()
주석
x = x + 1
"""Return a foobang
Optional plotz says to frobnicate the bizbaz first.
"""
"""Return an ex-parrot."""
공식 파이썬 코드 컨벤션 가이드 주소