Developer_Neo
[python] 빈 문자열, 리스트, 사전, 튜플, 집합 만들기 본문
반응형
빈 문자열 만들기
- 빈따옴표 이용
- str()함수이용
#빈따옴표 이용
s=''
print(s)
# 결과->
# 아무것도 안나옴
len(s) # 결과: 0
type(s) # 결과: <class 'str'>
>>> w = str( )
>>> print(w)
>>> len(w)
0
>>> type(w)
<class 'str'>
빈 리스트만들기
- 빈 대괄호 이용
- list()함수이용
>>> a = []
>>> print(a)
[]
>>> type(a)
<class 'list'>
>>> b = list()
>>> print(b)
[]
>>> type(b)
<class 'list'>
빈 튜플만들기
- 빈 소괄호 이용
- tuple()함수이용
>>> a=()
>>> print(a)
()
>>> type(a)
<class 'tuple'>
>>> b=tuple()
>>> print(b)
()
>>> type(b)
<class 'tuple'>
빈 사전만들기
- 빈 중괄호 이용
- dict()함수이용
>>> a={}
>>> print(a)
{}
>>> type(a)
<class 'dict'>
>>> b=dict()
>>> print(b)
{}
>>> type(b)
<class 'dict'>
빈 집합만들기
- set()함수 이용 (사전과 구분되기 때문이다.)
>>> a=set()
>>> print(a)
set()
>>> type(a)
<class 'set'>
반응형
'프로그래밍 > Python' 카테고리의 다른 글
[python] 리스트 만들기, 연산자, 함수, 메소드 (0) | 2022.01.16 |
---|---|
[python] 문자열 연산자 및 함수, 메소드 (0) | 2022.01.16 |
[python] print 함수 (+ 주석처리) (0) | 2022.01.16 |
[python] 파이썬의 아홉 가지 자료형, mutable vs immutable, 객체, 변수 (0) | 2022.01.16 |
[python] 컴파일러 VS 인터프리터 (0) | 2022.01.16 |
Comments