10 2023 档案
摘要:python一切皆对象 python所有对象类型都是type实例 object是所有对象的父类 class MyWith(): def __enter__(self): print('__enter__') return self def __exit__(self, exc_type, exc_v
阅读全文
摘要:const jsdom = require("jsdom"); const CryptoJS = require("crypto-js"); const {JSDOM} = jsdom; const dom = new JSDOM(`<!DOCTYPE html><p>Hello world</p>
阅读全文