Ray's playground

 

2010年12月18日

Recipe 1.5. Trimming Space from the Ends of a String(Python Cookbook)

摘要: [代码] 阅读全文

posted @ 2010-12-18 23:05 Ray Z 阅读(125) 评论(0) 推荐(0) 编辑

Recipe 1.4. Aligning Strings(Python Cookbook)

摘要: alignCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1print'|','hej'.ljust(20),'|','hej'.rjust(20),'|','hej'.center(20),'|'2|hej|hej|hej|3print'hej'.center(2)4hej5print'hej'.center(20,'+')6++++++++hej+++++++++ 阅读全文

posted @ 2010-12-18 11:09 Ray Z 阅读(163) 评论(0) 推荐(0) 编辑

导航