摘要:1.tuple是有序的.有count方法进行计数元素 tu1 = [1,2,3] tu1.count(2) tu1.index(3) 2.set和dict是无序的,无序的就说明无法通过索引进行元素查找 3.set没有重复的元素,有两种方式设置集合 a = set([2,3,4]) b = {3,2,
阅读全文
摘要:占位符 1.%s,对字符串进行占位 a = 'hello' 'my name is %s' % a 'my name is %(b)s ' %({'b':a}) 2.%f浮点数 %m.nf %34 m表示总的位数,n为小数点 %f %43 如果这样的话,就会有固定的小数个数 %-10.4f % 3.
阅读全文
摘要:1.字符串的方法。既然是字符串,那肯定有引号 a = 'avd vdv' a.count('v') #计算v的数目,在a中 a.find('v') 查找v的位置,不存在的返回-1,存在的返回int型,可以指定位置,help(str.find) a.index('v')查找v的位置,不存在返回报错,两
阅读全文
摘要:#特殊方法class Rectangle(): def __init__(self,width,height): self.width = width self.height = height #def __str__(self): #print调用方法 #return'宽%s,高%s'%(self
阅读全文
摘要:#特殊方法class Rectangle(): def __init__(self,width,height): self.width = width self.height = height #def __str__(self): #print调用方法 #return'宽%s,高%s'%(self
阅读全文
摘要:第二节 idle 名字和对象 唯一的标示符 id 类型 通过查type 内容 keyword.kwist()查看关键字 len(keyword.kwist) keyword.iskeyword(‘str’) Def func(): Return x * y Print(func()) 对a.appe
阅读全文