码迷,mamicode.com
首页 > 其他好文 > 详细

Second: 基本类型-数值型(int, float)

时间:2015-12-29 21:08:38      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:

基本类型中数值类型有 int, float, Decimal, Fraction

其中int 和 float 是比较常见的类型, 而Decimal 和 Fraction 不是那么常见, 所以暂时学习int 和 float.

Division (/) always returns a float

To do floor division and get an integer result (discarding any fractional result) you can use the // operator

To calculate the remainder you can use %

With Python, it is possible to use the ** operator to calculate powers

The equal sign (=) is used to assign a value to a variable.

 

运行一些基本的操作惊奇地发现,在python中数据可以很大很大而不会超出范围,对大数的支持是比较好的。

技术分享

Second: 基本类型-数值型(int, float)

标签:

原文地址:http://www.cnblogs.com/jcsz/p/5086785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!