Python 리스트 패킹과 언패킹

1 개요[ | ]

파이썬 패킹과 언패킹
  • 시퀀스 자료형에서 일반적으로 사용할수 있는 패킹과 언패킹

2 패킹과 언패킹[ | ]

fruits = ["Apple", "Banana", "Orange"]
print(fruits)
a,b,c=fruits
print (fruits,a,b,c)
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}