摘要:
计算机体系结构: 运算器: 控制器 存储器, 内存, 编址 输出设备 输入设备 控制器:负责读取指令,并把数据读取到运算器中. 存储器:存放数据和指令. 程序是由指令和数据组成,存放在存储器中, 指令会告诉cpu/控制器,数据的存放位置. 传输数据是由控制总线控制. 加法器:负责数据运算,加数与被加 阅读全文
摘要:
装饰器: test1和test2是原代码。利用装饰器调用原功能。 import time def timer(func): #由于形参不能是函数,所以传入的最好是函数地址,而不是函数。 def deco(): start_time=time.time() func() #将函数的地址传入后,加上() 阅读全文
摘要:
Interface check ifconfig cat /etc/network/interface # interfaces(5) file used by ifup(8) and ifdown(8) #auto ens33#iface ens33 inet dhcpauto loiface l 阅读全文
摘要:
The following commands will assist you with network restart procedure on Ubuntu 16.04 Xenial Xerus Linux. We will start with the most recommended comm 阅读全文
摘要:
import smtplibfrom email.mime.text import MIMETextfrom email.utils import formataddr def mail(): ret = 123 try: msg = MIMEText('the mail contents', 'p 阅读全文