| Skip to article frontmatter | https://codingalzi.github.io/code-workout-python/lists-tuples#skip-to-frontmatter |
| Skip to article content | https://codingalzi.github.io/code-workout-python/lists-tuples#skip-to-article |
| the MyST Documentation | https://mystmd.org/guide/deployment#deploy-base-url |
| Made with MyST | https://codingalzi.github.io/code-workout-python/ |
| 42H: 파이썬 | https://codingalzi.github.io/code-workout-python/ |
| 1 변수 할당 | https://codingalzi.github.io/code-workout-python/starting |
| 2 값과 연산 | https://codingalzi.github.io/code-workout-python/values |
| 3 표현식과 자료형 | https://codingalzi.github.io/code-workout-python/expressions-datatypes |
| 4 if 조건문 | https://codingalzi.github.io/code-workout-python/conditional |
| 5 함수 | https://codingalzi.github.io/code-workout-python/functions |
| 6 for 반복문 | https://codingalzi.github.io/code-workout-python/iteration-for |
| 7 while 반복문 | https://codingalzi.github.io/code-workout-python/iteration-while |
| 8 모듈 | https://codingalzi.github.io/code-workout-python/modules |
| 9 문자열 1부 | https://codingalzi.github.io/code-workout-python/strings-part1 |
| 10 문자열 2부 | https://codingalzi.github.io/code-workout-python/strings-part2 |
| 11 리스트와 튜플 | https://codingalzi.github.io/code-workout-python/lists-tuples |
| 12 사전과 집합 | https://codingalzi.github.io/code-workout-python/dicts-sets |
| 13 오류와 예외 처리 | https://codingalzi.github.io/code-workout-python/exception-handling |
| 14 객체 지향 프로그래밍 | https://codingalzi.github.io/code-workout-python/oop |
| 15 상속 | https://codingalzi.github.io/code-workout-python/oop-inheritance |
| Made with MyST | https://mystmd.org/made-with-myst |
| https://github.com/codingalzi/code-workout-python |
| https://github.com/codingalzi/code-workout-python/edit/main/lists-tuples.ipynb |
| (Google Colab) 리스트와 튜플 | https://colab.research.google.com/github/codingalzi/code-workout-python/blob/master/lists-tuples.ipynb |
| (연습) 리스트와 튜플 | https://colab.research.google.com/github/codingalzi/code-workout-python/blob/master/practices/practice-lists-tuples.ipynb |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-1 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-2 |
| 문자열 1부 | https://codingalzi.github.io/code-workout-python/strings-part1 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#sec-list |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-3 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-4 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-5 |
| 문자열 2부 | https://codingalzi.github.io/code-workout-python/strings-part2 |
| Table 1: | https://codingalzi.github.io/code-workout-python/lists-tuples#list-methods |
| Python Tutor | https://pythontutor.com/render.html#code=x%20%20%3D%20%5B1,%202,%203%5D%0Ay%20%3D%20x.copy%28%29%0Ay%5B0%5D%20%3D%2010&cumulative=false&curInstr=0&heapPrimitives=nevernest&mode=display&origin=opt-frontend.js&py=3&rawInputLstJSON=%5B%5D&textReferences=false |
| Python Tutor | https://pythontutor.com/render.html#code=x%20%20%3D%20%5B1,%202,%203%5D%0Ay%20%3D%20x.copy%28%29%0Ay%5B0%5D%20%3D%2010&cumulative=false&curInstr=0&heapPrimitives=nevernest&mode=display&origin=opt-frontend.js&py=3&rawInputLstJSON=%5B%5D&textReferences=false |
| Python Tutor | https://pythontutor.com/render.html#code=x%20%20%3D%20%5B1,%202,%203%5D%0Ay%20%3D%20x%0Ay%5B0%5D%20%3D%2010&cumulative=false&curInstr=0&heapPrimitives=nevernest&mode=display&origin=opt-frontend.js&py=3&rawInputLstJSON=%5B%5D&textReferences=false |
| Python Tutor | https://pythontutor.com/render.html#code=x%20%20%3D%20%5B1,%202,%203%5D%0Ay%20%3D%20x%0Ay%5B0%5D%20%3D%2010&cumulative=false&curInstr=0&heapPrimitives=nevernest&mode=display&origin=opt-frontend.js&py=3&rawInputLstJSON=%5B%5D&textReferences=false |
| Python Tutor | https://pythontutor.com/visualize.html#code=x_nested%20%20%3D%20%5B%5B1,%202,%203%5D,%20%5B4,%205,%206%5D%5D%0Ay_nested%20%3D%20x_nested.copy%28%29%0Ay_nested%5B0%5D%5B0%5D%20%3D%2010&curInstr=0&mode=display&origin=opt-frontend.js&py=3 |
| Python Tutor | https://pythontutor.com/visualize.html#code=x_nested%20%20%3D%20%5B%5B1,%202,%203%5D,%20%5B4,%205,%206%5D%5D%0Ay_nested%20%3D%20x_nested.copy%28%29%0Ay_nested%5B0%5D%5B0%5D%20%3D%2010&curInstr=0&mode=display&origin=opt-frontend.js&py=3 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-6 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-7 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#sec-tuple |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-8 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-9 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-10 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-11 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-12 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-13 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-14 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#sec-unpacking |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-15 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#enumerate |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#zip |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-16 |
| ¶ | https://codingalzi.github.io/code-workout-python/lists-tuples#id-17 |
| 42H: 파이썬문자열 2부 | https://codingalzi.github.io/code-workout-python/strings-part2 |
| 42H: 파이썬사전과 집합 | https://codingalzi.github.io/code-workout-python/dicts-sets |