美文网首页Python刻意练习
Python刻意练习 2019-05-24

Python刻意练习 2019-05-24

作者: 黄凯 | 来源:发表于2019-05-24 17:56 被阅读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]
    

    思考

    • 多练字符串切片操作

    相关文章

      网友评论

        本文标题:Python刻意练习 2019-05-24

        本文链接:https://www.haomeiwen.com/subject/cfunzqtx.html