2021年12月8日
摘要: class A: def f1(self): print('A,f1') def f3(self): print('A,f3') class B(A): def f1(self): print('B.f1') def f4(self): print('B.f4') class C1(B): def 阅读全文
posted @ 2021-12-08 21:17 csy113 阅读(19) 评论(0) 推荐(0) 编辑
摘要: class Bar: def foo(self,arg): print(self.name,self.age,self.gender,arg) z1 = Bar() z1.name = 'Tom' z1.age = 30 z1.gender = 'male' z1.foo('why') print( 阅读全文
posted @ 2021-12-08 20:21 csy113 阅读(17) 评论(0) 推荐(0) 编辑
摘要: class Bar: # 从输出结果可看出这里的self指的是具体的对象,当对象z1调用Bar类中的foo方法时self就是z1本身,打印出来为z1的内存地址 # 同理,当对象z2调用Bar类中的foo方法时self就是z2本身,打印出来为z2的内存地址 def foo(self,arg): pri 阅读全文
posted @ 2021-12-08 16:15 csy113 阅读(22) 评论(0) 推荐(0) 编辑
摘要: import xml.etree.ElementTree as ET #因为xml.etree.ElementTree比较长,as用于取个别名 new_xml = ET.Element("namelist") name = ET.SubElement(new_xml,"name",attrib={" 阅读全文
posted @ 2021-12-08 15:26 csy113 阅读(123) 评论(0) 推荐(0) 编辑
摘要: xml文件的读取、查询、修改、删除 import xml.etree.ElementTree as ET #因为xml.etree.ElementTree比较长,as用于取个别名 tree = ET.parse("xml_test") root = tree.getroot() print(root 阅读全文
posted @ 2021-12-08 15:19 csy113 阅读(825) 评论(0) 推荐(0) 编辑
摘要: 含\的常用特殊字符 阅读全文
posted @ 2021-12-08 08:56 csy113 阅读(20) 评论(0) 推荐(0) 编辑
摘要: import re #import re模块是为了使用正则表达式,正则表达式本身是一种专门匹配字符串的语言 #正则表达式的方法: #findall(): 所有结果都返回到一个列表里 #search():返回匹配到的第一个对象(object),对象可以调用group()返回结果 #match():只在 阅读全文
posted @ 2021-12-08 08:53 csy113 阅读(42) 评论(0) 推荐(0) 编辑