Mac安装Linux
摘要:VMware Fusion注册序列号: https://www.itpwd.com/227.html VMware Fusion安装centos步骤: https://www.jianshu.com/p/9983ab9b2bfe centos下载地址: https://www.centos.org/
阅读全文
posted @
2019-10-15 22:53
进击的许盈盈
阅读(998)
推荐(0)
mac下终端的一些命令
摘要:mac终端命令当前用户切换到root用户 1 GNU bash, version 3.2.57(1)-release (x86_64-apple-darwin17) 2 These shell commands are defined internally. Type `help' to see t
阅读全文
posted @
2019-10-15 15:23
进击的许盈盈
阅读(329)
推荐(0)
《Python程序设计》题库--摘
摘要:28 为了提高Python代码运行速度和进行适当的保密,可以将Python程序文件编译为扩展名 pyc 的文件 原来Python的程序中,是把原始程序代码放在.py文件里,而Python会在执行.py文件的时候。将.py形式的程序编译成中间式文件(byte-compiled)的.pyc文件,这么做的
阅读全文
posted @
2019-10-12 22:05
进击的许盈盈
阅读(704)
推荐(0)
Day 28 类的用法延伸
摘要:###上下文管理协议,为了让一个对象兼容with语句,必须在这个对象的类中声明__enter__和__exit__方法,即在类中添加__enter__, __exit__方法 class Open: def __init__(self,name): self.name=name def __ente
阅读全文
posted @
2019-10-12 18:49
进击的许盈盈
阅读(106)
推荐(0)