http://blog.csdn.net/ly21st http://ly21st.blog.chinaunix.net
发布时间:2011-11-28 13:06:42
Python and django(四)前面的内容:python and Django(一) 准备工作python and Django(二) 走马观花识python python and Django(三) 下马看花赏python-python中的对象 从这篇起开始详细介.........【阅读全文】
发布时间:2011-11-28 13:04:51
今天写程序的时候碰到了一个问题关于如何控制浮点数只显示小数点后两位,正常的想法是用round函数,例如 round(a, 2),但是在面对下面的问题时候round就不太好用了 >>> a=13.949999999999999>>> round(a, 2)13.949999999999999 上网查了资料,有网友提供了一种.........【阅读全文】
发布时间:2011-11-13 20:25:44
安装方法一: 在Linux下安装Python的操作相当简单,按如下步骤操作即可: 1、 在官方网站下载python安装包,这里注意python.org/download路径被屏蔽,需要使用http://www.python.org/页面上的中文“下载”链接进行下载。 这里下载了python.........【阅读全文】
发布时间:2011-10-11 20:19:56
"""A collection of string operations (most are no longer used).Warning: most of the code you see here isn't normally used nowadays.Beginning with Python 1.6, many of these functions are implemented asmethods on the standard string object. They used to be implemented bya built-in module call.........【阅读全文】