René's URL Explorer Experiment


Title: 리스트와 튜플 - 42H: 파이썬

Open Graph Title: 리스트와 튜플 - 42H: 파이썬

Generator: mystmd

direct link

Domain: codingalzi.github.io

image/code-workout-python/build/0d3d4023301dfe1d5cbc68f89b1bb622.png
og:image/code-workout-python/build/0d3d4023301dfe1d5cbc68f89b1bb622.png

Links:

Skip to article frontmatterhttps://codingalzi.github.io/code-workout-python/lists-tuples#skip-to-frontmatter
Skip to article contenthttps://codingalzi.github.io/code-workout-python/lists-tuples#skip-to-article
the MyST Documentationhttps://mystmd.org/guide/deployment#deploy-base-url
Made with MySThttps://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 MySThttps://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 Tutorhttps://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 Tutorhttps://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 Tutorhttps://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 Tutorhttps://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 Tutorhttps://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 Tutorhttps://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

Viewport: width=device-width,initial-scale=1


URLs of crawlers that visited me.