摘要:
#coding:utf-8'''1.类属性 -- 定义在类后2.数据属性 -- 定义在__init__方法中3.使用类属性c统计当前的对象个数'''class Hum(object): #类属性c、sing c=0 sing="hello" def __init__(self... 阅读全文
摘要:
CentOS 操作系统1.编写备份程序2.使用crontab命令,定时执行备份程序步骤一:编写备份文件bak.py:#coding:utf-8import osimport timesource=["/root/","a.py"]#目标目录targetdir="/root/backup/"#目标目录... 阅读全文