Python论坛  - 讨论区

标题:[python-chinese] 一个奇怪的问题

2006年05月12日 星期五 21:04

鳄鱼 crocodile.liu at 163.com
Fri May 12 21:04:03 HKT 2006

为什么
>>> '\6'
'\x06'
>>> '\f'
'\x0c'
而
>>> '\e'
'\\e'
 
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060512/21f4a559/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月13日 星期六 12:29

bird devdoer devdoer at gmail.com
Sat May 13 12:29:23 HKT 2006

数字前面的\表示输入的是10进制ascii值
'\e'就是两个字符,但是因为'\'有特别含义所以用'\\'表示'\'
'\t'是转义字符.

在06-5-12,鳄鱼 <crocodile.liu at 163.com> 写道:
>
>  为什么
> >>> '\6'
> '\x06'
> >>> '\f'
> '\x0c'
>> >>> '\e'
> '\\e'
>
>
>
>
>
>
>
>
>
> 你 不 想 试 试 今 夏 最 "酷" 的 邮 箱 吗 ?
> 蕴 涵 中 华 传 统 文 化 于 世 界 一 流 科 技 之 中,创 新 Ajax 技 术,126 "D 计 划"火 热 体 验 中 !
> <http://www.126.com/>
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>


-- 
devdoer
devdoer at gmail.com
http://project.mytianwang.cn/cgi-bin/blog
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060513/a138420a/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月17日 星期三 20:11

crocodile.liu crocodile.liu at 163.com
Wed May 17 20:11:10 HKT 2006

那为什么
>>> '\f'
'\x0c'

呢?

bird devdoer 写道:
> 数字前面的\表示输入的是10进制ascii值
> '\e'就是两个字符,但是因为'\'有特别含义所以用'\\'表示'\'
> '\t'是转义字符.
> 在06-5-12,*鳄鱼* <crocodile.liu at 163.com
> crocodile.liu at 163.com>> 写道:
>
>     为什么
>     >>> '\6'
>     '\x06'
>     >>> '\f'
>     '\x0c'
>>     >>> '\e'
>     '\\e'
>
>
>
>
>
>
>
>     你 不 想 试 试 今 夏 最 "酷" 的邮 箱 吗 ?
>     蕴 涵 中 华 传 统 文 化 于 世 界 一 流 科技 之 中,创 新 Ajax 技
>     术,126 "D 计 划"火 热 体 验 中 ! <http://www.126.com/>
>
>     _______________________________________________
>     python-chinese
>     Post: send python-chinese at lists.python.cn
>     python-chinese at lists.python.cn>
>     Subscribe: send subscribe to
>     python-chinese-request at lists.python.cn
>     python-chinese-request at lists.python.cn>
>     Unsubscribe: send unsubscribe to
>     python-chinese-request at lists.python.cn
>     python-chinese-request at lists.python.cn>
>     Detail Info: http://python.cn/mailman/listinfo/python-chinese
>
>
>
>
> -- 
> devdoer
> devdoer at gmail.com devdoer at gmail.com>
> http://project.mytianwang.cn/cgi-bin/blog
> ------------------------------------------------------------------------
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese



[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月18日 星期四 08:47

魏忠 weizhong2004 at gmail.com
Thu May 18 08:47:32 HKT 2006

Pyhton 里 \f 表示 ASCII Formfeed 字符, 也就是进纸指令,该指令的 ASCII 码为 12 , 换算成16进制就是 0c
\f ASCII Formfeed (FF)

-- 
开飞机的舒克
http://www.lvye.org/shuke
msn:weizhong at netease.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060518/4eb3104e/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月22日 星期一 15:02

crocodile.liu crocodile.liu at 163.com
Mon May 22 15:02:03 HKT 2006

请问,“Pyhton 里 \f 表示 ASCII Formfeed 字符”
你是从哪里学到的?


魏忠 写道:
> Pyhton 里 \f 表示 ASCII Formfeed 字符, 也就是进纸指令,该指令的 ASCII
> 码为 12 , 换算成16进制就是 0c
> |\f| 	ASCII Formfeed (FF)
>
>
>
> -- 
> 开飞机的舒克
> http://www.lvye.org/shuke
> msn:weizhong at netease.com weizhong at netease.com>
> ------------------------------------------------------------------------
>
> _______________________________________________
> python-chinese
> Post: send python-chinese at lists.python.cn
> Subscribe: send subscribe to python-chinese-request at lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request at lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese



[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年05月22日 星期一 15:36

Leo Jay python.leojay at gmail.com
Mon May 22 15:36:03 HKT 2006

On 5/22/06, crocodile.liu <crocodile.liu at 163.com> wrote:
>
>
> 请问,"Pyhton 里 \f 表示 ASCII Formfeed 字符"
> 你是从哪里学到的?
>
> python自带的文档里就有的。
你在索引里找escape sequence,
2.4.1 String literals中就有说:

Unless an "r" or "R" prefix is present, escape sequences in strings are
interpreted according to rules similar to those used by Standard C. The
recognized escape sequences are:

  Escape Sequence Meaning Notes  \newline Ignored  \\ Backslash (\)  \' Single
quote (')  \" Double quote (")  \a ASCII Bell (BEL)  \b ASCII Backspace (BS)
\f ASCII Formfeed (FF)  \n ASCII Linefeed (LF)  \N{name} Character named
name in the Unicode database (Unicode only)  \r ASCII Carriage Return (CR)
\t ASCII Horizontal Tab (TAB)  \uxxxx Character with 16-bit hex value
xxxx(Unicode only)
(1) \Uxxxxxxxx Character with 32-bit hex value xxxxxxxx (Unicode only) (2)
\v ASCII Vertical Tab (VT)  \ooo Character with octal value ooo (3,5)
\xhh Character
with hex value hh (4,5)


-- 
Best Regards,
Leo Jay
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060522/a0111a30/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号