python 性能鸡汤
摘要:
转载自:http://www.oschina.net/question/1579_458221:使用内建函数input() int() isinstance() issubclass() iter() open() ord() pow() print() property()2 使用join()连接字符串 >>> chunk = ['a', 'b', 'c', 'd'] >>> a = '_'.join(chunk) >>> a 'a_b_c_d' 阅读全文
posted @ 2014-02-19 17:33 雨渐渐 阅读(184) 评论(0) 推荐(0) 编辑