摘要: Python的translate方法真是太有意思了 阅读全文
posted @ 2008-05-03 22:10 CoderZh 阅读(4254) 评论(11) 推荐(2) 编辑
摘要: 方法一,使用[::-1]:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--s='python'prints[::-1]方法二,使用reverse()方法:Code highlighting produced by Actipro CodeHighlig... 阅读全文
posted @ 2008-05-03 20:43 CoderZh 阅读(2135) 评论(2) 推荐(1) 编辑
摘要: join 方法用于连接字符串数组Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--s=['a','b','c','d']print''.join(s)print'-'.join(s)输出结果:abcda-b-c-d使用 % 连接多个变量Code high... 阅读全文
posted @ 2008-05-03 20:27 CoderZh 阅读(3890) 评论(3) 推荐(3) 编辑