摘要: Strings>>> s = 'django is cool'>>> words = s.split()>>> words['django', 'is', 'cool']>>> ' '.join(words)'django is cool'>>> s.count('o')3>>> s.find('g... 阅读全文
posted @ 2014-09-08 20:31 Jolin123 阅读(498) 评论(0) 推荐(0) 编辑