Python刻意练习

Python刻意练习 2019-05-24

2019-05-24  本文已影响0人  黄凯

Python刻意练习

题目翻译

rotate('hello', 2)  # 返回 llohe
rotate('hello', -2) # 返回 lohel

参考答案

def rotate(string, n):
    """Rotate characters in a string.
       Expects string and n (int) for number of characters to move.
    """
    return string[n:] + string[:n]

思考

上一篇下一篇

猜你喜欢

热点阅读