资源简介

写一段程序用于移除字符串前端和后端连续的空白,空白包括空格,`\n`,`\t`。请使用字符串的**切片**实现,不能直接调用字符串的`strip`函数。请自行给出满足要求的字符串并验证所写程序。

资源截图

代码片段和文件信息

def strip(string):
    “““
    :type string: str
    :rtype: str
    “““
    for ch in ‘ \n \t‘:
        string = string.replace

评论

共有 条评论