나의 작은 valley

[Python] Namedtuple 본문

Computer Science/[Python] 문법 정리

[Python] Namedtuple

붕옥 아이젠 2022. 9. 3. 16:34
728x90
 
from collections import namedtuple

Student = namedtuple('Student', ['name', 'age', 'DOB'])

S =Student('붕옥아이젠', '20', '112')

print(S[1])

print(S)

print(S.name)
728x90
Comments