
Python
文章平均质量分 67
spongewxy
这个作者很懒,什么都没留下…
展开
-
Python 学习笔记一
1、'/' performs float division and '//' performs integer division>>> from __future__ import division>>> print 4/31.3333333333333333 >>> print 4//312、One of the built-in functions of P原创 2015-05-27 20:57:15 · 503 阅读 · 0 评论 -
Python 代码风格学习一
# The constants describing the multiplicative factor for finding a word in# a particular direction. These should be used in function get_factor.FORWARD_FACTOR = 1DOWN_FACTOR = 2BACKWARD_FACTOR =原创 2015-06-02 21:38:33 · 904 阅读 · 0 评论