제로베이스 1일차(변수)

Eunwoo Lee·2022년 7월 4일
0
post-custom-banner

변수

변수란 데이터가 저장되어 있는 메모리 공간이다

변수선언
number = 10
number는 변수명
10은 변수 초깃값

변수를 초기화 하지 않으면
NameError: name 'num' is not defined 오류발생

변수를 정의할 때는 반드시 '초기화'하도록한다.

변수를 사용하는 이유
데이터를 재사용하기 위해서
데이터를 효율적으로 사용하기 위해서

변수 작명법
영문사용
첫 번째는 소문자로
가급적 데이터의 의미를 파악할 수 있는 명사 사용(변수명만 보고도 의미를 파악할수있도록)
카멜 표기법 또는 스네이크 표기법 사용
카멜 표기법(customerBankAccount = '123124-124') 대문자를 사용하여 보기 쉽게 작성
스네이크 표기법(customerbank_account = '12314-124') ' ' 를 사용 하여 보기 쉽게 작성
예약어(파이썬에서 이미 예약된 언어) 사용 금지
import keyword
print(keyword.kwlist)

['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is',
'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']

특수문자 사용금지 (언더바 제외)
SyntaxError: invalid syntax 오류발생
숫자는 사용해도 되지만 첫 번째 문자로 사용금지
SyntaxError: invalid syntax 오류발생

post-custom-banner

0개의 댓글