class Solution:
def LeftRotateString(self , str: str, n: int) -> str:
# 用一个指针记录,然后最后向右读取和向左读取字符串
if not str:
return ""
l = len(str)
rol = n % l # 需要向右移动的位数,也是指针的位置
res = str[rol:]+str[:rol] # 字符串重新排列即输出
return res