파이썬 쌩 기초 이모저모 #1
print('Counter라는 변수에 숫자', Counter, '가 저장되었습니다.') # +로 연결하지 않는다 변수는 밑줄(_) 또는 영문자로 시작 두 번째 문자부터는 알파벳, 숫자, 밑줄을 사용가능 대소문자를 구분 ‘파이썬 예약어’는 변수명으로 사용 불가 import keyword print(keyword.kwlist) 파이썬 예약어 ['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'no..
2021. 9. 30.