复习
行云&流水
天行健,君子以自强不息。
地势坤,君子以厚德载物。
展开
-
pop、remove和del用法
pop、remove和del用法#del在dictionary中的运用info_list = {'name':'wang','age':18,'company':'ali'}del info_list['name']print(info_list)#del在list中的运用list_new=['php','c#','js']del list_new[0]print(list_ne...原创 2019-03-01 16:40:02 · 315 阅读 · 0 评论 -
find和index用法和区别
官方解释find(self, sub, start=None, end=None):#real signature unknown; restored from docB.find(sub[, start[, end]]) -> intReturn the lowest index in B where subsection sub is found,such that sub i...原创 2019-03-01 14:22:06 · 6850 阅读 · 0 评论