파이썬 문법 - 데이터 타입

Junyeong Choi·2021년 5월 13일

데이터 타입

이름 Name타입 Type설명 Description
정수 IntegersintWhole numbers, such as: 3 300 200
소수점 Floating pointfloatNumbers with a decimal point: 2.3 4.6 100.0
문자열 StringsstrOrdered sequence of characters: "Hello" 'Sammy' "2000"
리스트 ListslistOrdered sequence of objects: [10,"hello",200.3]
딕셔너리 DictionariesdictUnordered Key:Value pairs: {"mykey":"value", "name":"Frankie"}
튜플 TuplestupOrdered Immutable sequence of objects:10,"hello",200.3
세트 SetssetUnordered collection of unique objects: {"a","b"}
BooleansboolLogical value indicating True or False

0개의 댓글