a_string = 'like this' #string
a_number = 3 #int
a_boolean = True #boolean : PascalCase로 작성할 것.
a_float = 3.12 #float
a_none = None #JS의 null과 유사함
print(type(a_float))
#파이썬의 변수명은 snakeCase 사용.
[Python] 파이썬 기초6. 반복문 (0) | 2021.12.31 |
---|---|
[Python] 파이썬 기초5. 조건문 (0) | 2021.12.31 |
[Python] 파이썬 기초4. 함수 (0) | 2021.12.31 |
[Python] 파이썬 기초 3. 문장에 변수 넣기 (0) | 2021.12.31 |
[Python] 파이썬 기초 2. sequence Type (0) | 2021.12.31 |