Notice
Recent Posts
Recent Comments
Link
목록datatype (1)
개발공부 vlog

프로그래밍 언어에는 데이터를 담는 그릇이 존재한다. 이 그릇은 '변수(Variable)'라는 이름으로 불리어진다. 데이터에는 여러가지 자료형태(data type)가 존재한다. int(정수형), float(실수), complex(복소수), string(문자열), boolean(블리언), list(리스트), tuple(튜플), set(집합), dictionary(사전) Integral = 12 Float = 1.23 Complex = 2 + 3j Boolean = True List = [1, 2, 3, 4] Tuple = (1, 2, 3, 4) Set = {1, 2, 3, 4} Dictionary = {"one" : 1, "Two" : 2} print(Integral, type(Integral)) print..
Python
2022. 1. 16. 22:36