a = 10
print(type(a))
print(a)
b = 10.5
print(type(b))
c = 'abcd'
print(type(c))
d = True
print(type(d))
del c
'백엔드개발자 준비하기 - 파이썬' 카테고리의 다른 글
[파이썬] 문자열 (0) | 2023.02.02 |
---|---|
[파이썬] 함수 (0) | 2023.02.02 |
[파이썬] 조건문, 반복문 (0) | 2023.02.02 |
[파이썬] list, tuple, set, dictionary (0) | 2023.01.31 |
[파이썬] 환경설정 (0) | 2023.01.31 |