ETC/프로그래밍공부13 [python] 변수 type 체크 하는 법 타입 체크하는 법! my_dict = {} print(type(my_dict)) if type(my_dict) is dict: print("\n\n\nYES\n\n") if str(type(my_dict)) == "": print("good") 1. type(my_dict) == dict 비교 2. type(my_dict)을 print 하면 가 출력이 된다. 고래서 str(type(my_dict)) == "" 비교하기 * type(my_dict) == 하면 문법 오류뜬당 2021. 2. 26. 이전 1 2 3 다음