함수 원형type() 함수안에다가 변수명이나 숫자, 문자를 작성해주면 된다.type() 예제type() 함수를 print 함수로 출력해주면 자료형이 나온다.a = 10print(type(a)) # intprint(type(111)) # intprint(type(111.1)) # floatprint(type("111")) # stringprint(type(True)) # boolprint(type(3+4j)) # complex 결과 자료형 정리int : 정수형float : 실수형string : 문자열bool : 참, 거짓complex : 복소수