免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2661 | 回复: 3
打印 上一主题 下一主题

问个python的转义符的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-10-15 18:18 |只看该作者 |倒序浏览
import os
import time

# 1. The files and directories to be backed up are specified in a list.
source = [r'e:\grub4dos',r'e:\firefox.txt']
# 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 = 'e:\\back\\'

# 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') + '.rar'

# 5. We use the zip command (in Unix/Linux) to put the files in a zip archive
zip_command = "D:\Progra~1\WinRAR\\rar.exe a -r -idq %s %s" % (target, ' '.join(source))


# Run the backup
if os.system(zip_command) == 0:
    print 'Successful backup to', target
else:
    print 'Backup FAILED'
我稍微修改了 简明python教程 里的一个例子,但是对转义符有点不大明白,希望高手解答一下,谢谢。
1:'e:\\back\\' ,为什么我用r‘e:\back\' 和“e:\back\” 会报错。

2:"D:\Progra~1\WinRAR\\rar.exe a -r -idq %s %s" % (target, ' '.join(source))
     在WinRAR\\rar.exe 为什么要多一个\才行??

3:表示windos目录的表示还可以怎样写?

[ 本帖最后由 wblue 于 2008-10-15 18:19 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2008-10-16 09:38 |只看该作者
有那位回答我一下吗?有点搞不懂哦

论坛徽章:
0
3 [报告]
发表于 2008-10-16 15:41 |只看该作者
1.这个问题在于你最后一个反斜杠,如果是这样:r'e:\back' 就行,r'e:\back\' 这个最后一个斜杠在r 之后表示下面还有没有输完的字符,所以会抛错:SyntaxError: EOL while scanning single-quoted string,你可以r'e:\back\回车,就可以看到有...让你继续输入。

2.\\r这里需要多一个\,表示转义后面\\,如果只是\r不是\\r,则表示一个回车符号。

3.win可以用\\,也可以用/这样,比如e:\\back,e:/back都可以

论坛徽章:
0
4 [报告]
发表于 2008-10-16 16:02 |只看该作者
非常感谢
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP