Indexing
Indexing is a way to access elements of a collection.
So, in a string, there are just a list of characters.
To access a character at a specific location, yo ucan use 'indexing'.
a = "Hello"
print(a[0])
Putting a number inside []
will give you the character at that index.
But note that the index starts at 0.
So, the first character is at index 0, the second at index 1, etc.
This is because the index (5) is out of range.
Out of range means that the index value does not exist in the string. :::
String indexing (from x
to y
)
To get a string of range of characters, you can use the :
operator.
The number before the :
is the starting index, and the number after the :
is the ending index.
The second code example above has an empty space before :
.
The empty space means 0
.
So, [0:1]
is equal to [:1]
.
Reversing a string
To reverse a string, we can select all the string first by [:]
.
To flip it sideways, we can use the :-1
which means Python will count the string backward.
Resulting in the string being flipped by [::-1]
.
인덱싱 x를 사용하면 x-1인 이유
왜 저희는 목록의 첫 번째로 1을 사용하는데 코딩에서는 0부터 시작할까요?
그 이유는 '수학'입니다. 리스트는 한국어로 번역하면 '목록'입니다. 목록에는 '순서'가 있습니다.
예를 들어 1에서 시작하여 2씩 증가하는 리스트를 만들겠습니다.
1, 3, 5, 7 처음에 1에서 시작했습니다. 처음에는 1 + (2 * 0)입니다.
1에서 2 증가했습니다. 이 순서의 공차(차이)는 2입니다. 두 번째 값은 1 + (2+1)입니다.
이렇게 계속하면 다음과 같은 공식이 나옵니다.
a = 1 + {2 * (a-1)} 그래서 첫 번째 리스트 값을 0을 이용해서 찾는 이유는 공차의 값을 기준으로 0이 곱해졌기 때문입니다.
:::