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]
思考
- 多练字符串切片操作
网友评论