컴퓨터
[python] 기본
BlushfulCactus
2022. 10. 20. 10:33
728x90
반응형
variable
변수 선언 시 type 설정 안 함
a = 5
b = 'hi'
single or double quotes
따옴표 상관없음
a = "hi"
b = 'hi'
case-sensitive
대문자와 소문자 구별
a = 5
A = 'hi'
casting
할 수는 있음
a = str(5)
b = int(5)
c = float(5)
variable names 변수 이름
가능 : A-z, 0-9, _
변수 이름 시작 가능 : 문자 or _(unerscore)
숫자로 시작할 수 없음
728x90
반응형