2016年11月8日
摘要: # coding=utf8 s = 'abcde' i = -1 for i in range(-1, -len(s), -1): print(s[:i]) # 结果 ''' abcd abc ab a ''' 阅读全文
posted @ 2016-11-08 10:31 Asina 阅读(165) 评论(0) 推荐(0) 编辑