본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 18412번 文字列の反転 (Inversion of a String)

by 현장 2022. 11. 23.

-Code

n, a, b = map(int, input().split())
s = input()
print(s[:a - 1] + s[a - 1: b][::-1] + s[b:])