大道至简,规则无上。

导航

2018年2月5日 #

Python之字典方法

摘要: 1 abc #返回结果 2 def 3 hjk 阅读全文

posted @ 2018-02-05 15:10 大道至简,规则无上。 阅读(126) 评论(0) 推荐(0) 编辑

Python之元组方法

摘要: def count(self, value): # 计算元素出现的个数 """ T.count(value) -> integer -- return number of occurrences of value """ return 0def index(self, value, start=No 阅读全文

posted @ 2018-02-05 11:10 大道至简,规则无上。 阅读(116) 评论(0) 推荐(0) 编辑

Python之字符串方法

摘要: test = 'hello {0},age{1}' res = test.format('chenyan','19') print(res) hello chenyan,age19 #返回结果 i = ['hehe','haha'] res = '-'.join(i) print(res) hehe 阅读全文

posted @ 2018-02-05 10:33 大道至简,规则无上。 阅读(110) 评论(0) 推荐(0) 编辑

Python之列表方法

摘要: li = ['a','b','c','d'] l = ['e','f'] li.extend(l) print(li) ['a', 'b', 'c', 'd', 'e', 'f'] #返回结果 阅读全文

posted @ 2018-02-05 08:51 大道至简,规则无上。 阅读(155) 评论(0) 推荐(0) 编辑