뒤에서 3개만 출력
a = "abc1234가나다"
print(a[-3:])
# 가나다
뒤에 3개 빼고 출력
a = "abc1234가나다"
print(a[:-3])
# abc1234
뒤에서부터 출력
a = "abc1234가나다"
print(a[::-1])
# 다나가4321cba
반응형
'백엔드 > Python' 카테고리의 다른 글
[python] 파이썬에서 날짜 포맷 변경하기 (0) | 2022.03.16 |
---|---|
[python error] 'euc_kr' codec can't decode byte 0xbf in position 2: illegal multibyte sequence (0) | 2022.02.01 |
[python] dataframe 숫자만 추출, 숫자+문자 추출 (데이터 전처리) (0) | 2022.01.26 |
[python] 'in <string>' requires string as left operand, not float (0) | 2022.01.26 |
[python] dataframe 컬럼명 변경하기 (0) | 2022.01.26 |