2006年08月01日 星期二 15:29
在JAVA中有java.text.DecimalFormat类对数值进行各种形式的格式化,比如将33 格式化为"00033",在Python中是否有类似的类?
2006年08月01日 星期二 15:34
On 8/1/06, pathfinder <pathfinder.name at gmail.com> wrote: > 在JAVA中有java.text.DecimalFormat类对数值进行各种形式的格式化,比如将33 > 格式化为"00033",在Python中是否有类似的类? > python格式化采用C的格式,如你的例子: a = 33 b = "%05d" % a -- I like python! My Blog: http://www.donews.net/limodou My Django Site: http://www.djangocn.org NewEdit Maillist: http://groups.google.com/group/NewEdit
2006年08月01日 星期二 16:01
limodou 写道: > On 8/1/06, pathfinder <pathfinder.name at gmail.com> wrote: >> 在JAVA中有java.text.DecimalFormat类对数值进行各种形式的格式化,比如将33 >> 格式化为"00033",在Python中是否有类似的类? >> > python格式化采用C的格式,如你的例子: > > a = 33 > b = "%05d" % a > > 原来如此,看来我还得复习C语言的格式化语法了。没用C已经有4年了!! 多谢limodou > ------------------------------------------------------------------------ > > _______________________________________________ > 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
2006年08月01日 星期二 18:35
On 8/1/06, pathfinder <pathfinder.name at gmail.com> wrote: > > 在JAVA中有java.text.DecimalFormat类对数值进行各种形式的格式化,比如将33 > 格式化为"00033",在Python中是否有类似的类? > 跟在c里是一样的: >>> "%05d" % 33 '00033' >>> -- Best Regards, Leo Jay -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20060801/9afcce0b/attachment.html
Zeuux © 2025
京ICP备05028076号