剑指 Offer 58 - II. 左旋转字符串_字符串
不得不说,python秒杀字符串 api一堆一堆。。

class Solution:
def reverseLeftWords(self, s: str, n: int) -> str:
return s[n:] + s[:n]