摘要: import lxml.html,requests,pyperclipurl='https://www.python.org/dev/peps/pep-0020/'xpath='//*[@id="the-zen-of-python"]/pre/text()'res=requests .get (ur 阅读全文
posted @ 2020-05-28 01:05 逝水无痕L 阅读(524) 评论(0) 推荐(0)
摘要: 静态方法: 只是名义上归类管理,实际上在静态方法里访问不了类或实例中的任何属性 类方法: 只能访问类变量,不能访问实例变量 属性方法: 把一个方法变成一个静态属性,作用就是隐藏实现的细节 @property : 作用是把@property下方的类的函数变成静态属性化,属性化后不能直接修改或删除 @* 阅读全文
posted @ 2020-05-28 00:56 逝水无痕L 阅读(140) 评论(0) 推荐(0)
摘要: 定义一个类的另一种写法def func(self): print('hello %s' %self.name)def __init__(self,name,age): self.name = name self.age = ageFoo = type('Foo', (object,), {'talk 阅读全文
posted @ 2020-05-28 00:53 逝水无痕L 阅读(528) 评论(0) 推荐(0)
摘要: class Foo(object): def __init__(self): self .data={} #创建一个空字典 def __getitem__(self, key): print('__getitem__', key) return self .data.get(key) #效果等于 s 阅读全文
posted @ 2020-05-28 00:51 逝水无痕L 阅读(91) 评论(0) 推荐(0)
摘要: import hashlibm=hashlib .md5()#用hashlib.md5()加密,没办法反解,除非是撞密码,也只能是弱密码m.update(b'I am here')print(m.hexdigest() )#以十六进制的形式输出m.update(b"It's a long time 阅读全文
posted @ 2020-05-24 20:59 逝水无痕L 阅读(166) 评论(0) 推荐(0)
摘要: #凯撒加密法只适用于26个字母的加密#凯撒加密法是把26个字母把照0~25一一对应,然后把要加密的字母的索引号加上key后对应的字母输出import pyperclipmessage='this is my secret message.'key=13#key=13,则加密和解密是同一套代码,因为序 阅读全文
posted @ 2020-05-23 23:16 逝水无痕L 阅读(947) 评论(0) 推荐(0)
摘要: OS模块学习内容:import osprint(os.getcwd() )#获取当前工作目录,即当前python脚本工作的目录路径import ospath = r'D: 'retval = os.getcwd() # 查看当前工作目录print("当前工作目录为 %s" % retval)os.c 阅读全文
posted @ 2020-05-22 17:32 逝水无痕L 阅读(156) 评论(0) 推荐(0)
摘要: Shopping overseas 一、核心词汇 snacks 零售 aisle (商店货架间的)通道 drugstore 药房、药妆店 liquor store 酒类专卖店 mall 商场 recommend 推荐 main 主要的;最重要的;最大的 bargains 便宜货 popular 受欢 阅读全文
posted @ 2020-05-14 11:52 逝水无痕L 阅读(210) 评论(0) 推荐(0)
摘要: Buying Clothes 一、词汇预习: I was looking 我正在看 newest 最新的 popular 流行的,受欢迎的 styles 风格,款式 try them on 试穿 fit 适合 look 外观 material 材料,材质 zipper 拉链 in the back 阅读全文
posted @ 2020-05-12 22:51 逝水无痕L 阅读(253) 评论(0) 推荐(0)
摘要: list_test=[1,2,3,4]name='JC'def change_list(): list_test [0]='JC' name ='jc' print('函数里面的列表',list_test ,name )change_list()print('函数外面的',list_test ,na 阅读全文
posted @ 2020-05-12 00:57 逝水无痕L 阅读(1392) 评论(0) 推荐(0)