SNAKE
-
파이썬 문법 심화Python 2024. 6. 30. 07:54
자주 사용되는 모듈 및 패턴 1. type()integer = 10float_ = 1.23string = "hello world!!"list_ = [1, 2, 3]tuple_ = (1, 2, 3)set_ = {1, 2, 3}dictionary = {"key": "value"}boolean = Trueprint(type(integer)) # print(type(float_)) # print(type(string)) # print(type(list_)) # print(type(tuple_)) # print(type(set_)) # print(type(dictionary)) # print(type(boolean)) # a = 1b = '1' 이럴 경우 숫자 1인지 문자 1인지 알 수 없는데 이때 type(..