2018年3月12日
摘要: # coding: utf-8 # In[1]: import collections str = "Be slow to promise and quick to perform" # 按空格切割 str_split = str.split(' ') # In[2]: str_split # Out[2]: #['Be', 'slow', 'to', 'promise', 'an... 阅读全文
posted @ 2018-03-12 23:23 天进鱼 阅读(5022) 评论(0) 推荐(0) 编辑