Notice
Recent Posts
Recent Comments
Code IT
Python - list, set, tuple, dict 본문
# list, set, dict는 복합적으로 사용할수 있다. # dict가 list를 가지거나, 반대로 list가 dict를 가질 수도 있다. # 당연하겠지만, set도 가질 수 있고, set 내에 set을 포함한 list, dict도 가질 수 있다. person = { "age": 40, "job": ["Developer", "Proffessor", "Manager"], "language": ("Java", "Python", "Node.js", "React", "Angular")} print(person)
'Python & Django' 카테고리의 다른 글
Python - bool (0) | 2019.01.30 |
---|---|
Python - 객체복사 (얕은 복사/깊은 복사) (0) | 2019.01.30 |
Python - dictionary (dict) (0) | 2019.01.30 |
Python - tuple (0) | 2019.01.30 |
Python - set (0) | 2019.01.30 |
Comments