Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 스마트컨트랙트
- 개인키
- javascript
- 블록체인
- 파이썬
- 주소
- 블록체인개발
- 이더리움
- keras
- 솔리디티
- 마스터링 비트코인
- 마스터링비트코인
- js
- 암호화폐
- smart contract
- 백서
- 레디스
- pythonic
- 문자열
- 공개키
- DAPP
- 비트코인
- 알고리즘
- 개발
- 마스터링 이더리움
- Ethereum
- solidity
- Redis
- node js
- python
Archives
- Today
- Total
개발이야기
[TIL] pep8 - 변수명 convention 본문
pep8 변수명 설정 convention
- Class Names
" Class names should normally use the CapWords convention. "
class의 이름은 CapWords convention 을 따른다. 즉 첫 글자는 대문자 이어지는 다음 단어가 있으면 다음 단어의 첫 글자 역시 대문자이다.
ex )
class CustomLogger:
- Function and Variable Names
"Function names should be lowercase, with words separated by underscores as necessary to improve readability."
함수명과 변수명은 둘 다 소문자로 쓰는것이 원칙이다. 두 단어를 사용하는 경우 '_' 언더바(underscore)를 사용한다.
ex )
def get_data
my_dict = dict()
- 예약어와 충돌할 경우
함수 인자가 예약어와 충돌할 경우 인자뒤에 '_' 언더바(underscore)를 붙인다.
ex )
def func1(time_, name_):
-----
레퍼런스
[1] https://www.python.org/dev/peps/pep-0008/#id46
[2] https://b.luavis.kr/python/python-convention
https://github.com/AhnSungJoo/TIL/blob/master/python/pep8/pep_variable.md
Comments