摘要:
class Foo: pass class Bar: pass v = [item() for item in [Foo,Bar]] >>>: v==> [Foo(), Bar()] 2. 类的封装 封装有两种: 1. 将同一类方法封装到类中 class A: # 文件增删改查方法 def add( 阅读全文
摘要:
参考地址: https://www.cnblogs.com/xuxinstyle/p/9609551.html https://www.runoob.com/w3cnote/linux-common-command-2.html 阅读全文
摘要:
1. rpm Red Hat Package Manger(红帽软件包管理工具) 无法自己解决依赖性关系 安装卸载软件包 https://www.cnblogs.com/roland1982/p/3763654.html 2. yum 可以解决依赖关系,前提是需要提前指定依赖关系 一台机器上只能一个 阅读全文