파이썬 namedtuple

(Python 지명튜플에서 넘어옴)

1 개요[ | ]

파이썬 namedtuple
Python 지명튜플
  • 튜플형태로 데이터 구조체를 저장하는 방법
from collections import namedtuple
Split = namedtuple('Split',['x','y'])
s = Split(11,y=22)
print( s )

2 같이 보기[ | ]

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