본문 바로가기

옥탑방주인/Python

파이썬 문자열 슬라이싱


test = "Hello, Python"

test[3] 

'l'

test1 = test[0] + test[1] + test[2] + test[3] + test[4]

print(test1)

Hello

test[0:5]

Hello


어레이의 -1은 뒤에서부터, 뒤에서부터 카운트는 -1부터 시작

추후 수정 예정