파이썬(python)

[파이썬 python] 파이썬 자료형

웅겹사r☆ 2022. 6. 30. 23:23

# 문자 자료형
print('hello world')
print('안녕하세요')
print('10')


# 숫자 자료형
print(33)
print(3.14)


# 불리언 자료형
print(True)
print(False)