"Tuple to set"의 두 판 사이의 차이

(새 문서: ;tuple to set ==Python== category: Python <source lang='Python'> a = (1, 2, 3) b = set(a) print( type(a) ) print( type(b) ) print( a ) print( b ) # <class 'tuple'> # <class 'set'...)
 
잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
3번째 줄: 3번째 줄:
==Python==
==Python==
[[category: Python]]
[[category: Python]]
<source lang='Python'>
<syntaxhighlight lang='Python'>
a = (1, 2, 3)
a = (1, 2, 3)
b = set(a)
b = set(a)
14번째 줄: 14번째 줄:
# (1, 2, 3)
# (1, 2, 3)
# {1, 2, 3}
# {1, 2, 3}
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[set to tuple]]
*[[set to tuple]]
*[[tuple to list]]
*[[tuple to list]]

2020년 11월 2일 (월) 02:31 기준 최신판

tuple to set

1 Python[ | ]

a = (1, 2, 3)
b = set(a)
print( type(a) )
print( type(b) )
print( a )
print( b )
# <class 'tuple'>
# <class 'set'>
# (1, 2, 3)
# {1, 2, 3}

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}