摘要:
[代码]save the file as fibo.py, then enter python enviroment as below:Pay attention to the difference between import modulename and from modulename import module 阅读全文
摘要:
Python中将两个整数相除,默认结果是为整数的。但我们可以通过下面的方法,使得两个整数相除的结果为小数。Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--from__future__importdivisionprint7/3输出结果:2.333333... 阅读全文