113-模拟字符串rstrip用法

思路参考 112-模拟字符串lstrip用法

whitesps = ' \r\n\v\f\t'

def rmrsps(astr):
    for i in range(-1, -len(astr), -1):  # 自右向左,下示为负
        if astr[i] not in whitesps:
            return astr[:i + 1]  # 结束下标对应的字符不包含,所以加1
    else:
        return ''

if __name__ == '__main__':
    print(rmrsps(''))
    print(rmrsps('  \thello  '))
    原文作者:凯茜的老爸
    原文地址: https://www.jianshu.com/p/a001a103def8
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞