Python论坛  - 讨论区

标题:[python-chinese] 一个基本题

2005年06月22日 星期三 15:27

ouli ouli at eastcom.com
Wed Jun 22 15:27:57 HKT 2005

python-chinese, 您好!

    今天遇到一个非常基本的问题,实在是想不通。
    在python中,希望写入一些数据,代码如下:
f = open("test", "wb")
f.write("12\x0a34")
f.close()

    然后用UE打开看,文件内容是31 32 0d 0a 33 34,实在想不明白,我期望的是31 32 0a 33 34,文件也是以"wb"方式打开的,可是为何还会添加0d。

    有那位高手知道如何解决这个问题,呵呵。
					 
        ouli
        ouli at eastcom.com
          2005-06-22





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

2005年06月22日 星期三 21:59

Gerald Lee leejd80 at gmail.com
Wed Jun 22 21:59:46 HKT 2005

回车换行的问题吧,你在windows下面?


在05-6-22,ouli <ouli at eastcom.com> 写道:
> 
> python-chinese, 您好!
> 
> 今天遇到一个非常基本的问题,实在是想不通。
> 在python中,希望写入一些数据,代码如下:
> f = open("test", "wb")
> f.write("12\x0a34")
> f.close()
> 
> 然后用UE打开看,文件内容是31 32 0d 0a 33 34,实在想不明白,我期望的是31 32 0a 33 
> 34,文件也是以"wb"方式打开的,可是为何还会添加0d。
> 
> 有那位高手知道如何解决这个问题,呵呵。
> 
> ouli
> ouli at eastcom.com
> 2005-06-22
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 



-- 
My Blog >> http://leejd.cndev.org
My QQ >> 9847243
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050622/2383ea5c/attachment.htm

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

2005年06月23日 星期四 08:13

大熊 bearsprite at gmail.com
Thu Jun 23 08:13:48 HKT 2005

就用你的代码我试过了,没有问题,是生成了31 32 0A 33 34,是否你的UE的设置成打开unix换行格式的文件自动转换成windows换行格式了?

在05-6-22,Gerald Lee <leejd80 at gmail.com> 写道:
> 
> 回车换行的问题吧,你在windows下面?
> 
> 
> 在05-6-22,ouli <ouli at eastcom.com> 写道:
> > 
> > python-chinese, 您好!
> > 
> > 今天遇到一个非常基本的问题,实在是想不通。
> > 在python中,希望写入一些数据,代码如下:
> > f = open("test", "wb")
> > f.write("12\x0a34")
> > f.close()
> > 
> > 然后用UE打开看,文件内容是31 32 0d 0a 33 34,实在想不明白,我期望的是31 32 0a 33 
> > 34,文件也是以"wb"方式打开的,可是为何还会添加0d。 
> > 
> > 有那位高手知道如何解决这个问题,呵呵。
> > 
> > ouli
> > ouli at eastcom.com
> > 2005-06-22
> > 
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn
> > http://python.cn/mailman/listinfo/python-chinese
> > 
> 
> 
> 
> -- 
> My Blog >> http://leejd.cndev.org
> My QQ >> 9847243 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
茫茫人海,你是我的最爱
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050623/28862ffd/attachment.html

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

2005年06月23日 星期四 08:15

limodou limodou at gmail.com
Thu Jun 23 08:15:26 HKT 2005

关于这个问题的确是这样,ouli已经发信说过了,你好象没看到呀。

在 05-6-23,大熊<bearsprite at gmail.com> 写道:
> 就用你的代码我试过了,没有问题,是生成了31 32 0A 33
> 34,是否你的UE的设置成打开unix换行格式的文件自动转换成windows换行格式了?
> 
> 在05-6-22,Gerald Lee <leejd80 at gmail.com > 写道:
> > 回车换行的问题吧,你在windows下面?
> > 
> > 
> > 
> > 在05-6-22,ouli <ouli at eastcom.com> 写道: 
> > 
> > > python-chinese, 您好!
> > > 
> > >     今天遇到一个非常基本的问题,实在是想不通。
> > >     在python中,希望写入一些数据,代码如下:
> > > f = open("test", "wb")
> > > f.write("12\x0a34")
> > > f.close()
> > > 
> > >     然后用UE打开看,文件内容是31 32 0d 0a 33 34,实在想不明白,我期望的是31 32 0a 33
> 34,文件也是以"wb"方式打开的,可是为何还会添加0d。 
> > > 
> > >     有那位高手知道如何解决这个问题,呵呵。
> > > 
> > > ouli
> > > ouli at eastcom.com
> > > 2005-06-22
> > > 
> > > _______________________________________________ 
> > > python-chinese list
> > > python-chinese at lists.python.cn
> > > http://python.cn/mailman/listinfo/python-chinese 
> > > 
> > 
> > 
> > 
> > -- 
> > My Blog >> http://leejd.cndev.org
> > My QQ >> 9847243 
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn 
> > http://python.cn/mailman/listinfo/python-chinese
> > 
> > 
> > 
> 
>  
> 
> -- 
> 茫茫人海,你是我的最爱 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
I like python! 
My Donews Blog: http://www.donews.net/limodou
New Google Maillist: http://groups-beta.google.com/group/python-cn

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

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

    你的回复:

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

    Zeuux © 2025

    京ICP备05028076号