• 大小: 500 KB
    文件类型: .tar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: Python
  • 标签: python教程  python  

资源简介

本书的读者

本书可以作为Python编程语言的一本指南或者教程。它主要是为新手而设计,不过对于有经验的程序员来说,它同样有用。

即便你对计算机的了解只是如何在计算机上保存文本文件,你都可以通过本书学习Python。如果你有编程经验,你也可以使用本书学习Python。

如果你以前有编程经验,那么你将会对Python语言和其他你所钟爱的编程语言之间的区别感兴趣。对此我为你指出了许多这样的区别。顺便提醒你,Python将很快成为你最喜欢的编程语言!



资源截图

代码片段和文件信息

#!/usr/bin/env python
# Filename: backup_ver1.py

import os
import time

# 1. The files and directories to be backed up are specified in a list.
source=[‘/home/swaroop/byte‘‘/home/swaroop/bin‘]
# If you are using Windows use source=[r‘C:\Documents‘r‘D:\Work‘] or something like that

# 2. The backup must be stored in a main backup directory
target_dir=‘/mnt/e/backup/‘ #Remember to change this to what you will be using

# 3. The files are backed up into a zip file
# 4. The name of the zip archive is the current date and time
target=target_dir+time.strftime(‘%Y%m%d%H%M%S‘)+‘.zip‘

# 5. We use the zip command (in Unix/Linux) to put the files in a zip archive
zip_command=“zip -qr ‘%s‘ %s“ %(target‘ ‘.join(source))

# Run the backup
if os.system(zip_command)==0:
print ‘Successful backup to‘

评论

共有 条评论