python基础学习以及3.X和2.X的不同

廖雪峰官方网站
http://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000
找的的一个比较好的教程,
http://www.runoob.com/python/python-tutorial.html
1.print
python3中不能直接用print要加括号print()
2.除法一般为/和//
2中

>>> 1 / 2
0
>>> 1.0 / 2.0
0.5

3中

>>> 1/2
0.5

//
python3中结果取决于操作数类型,操作数中有一个是浮点数,结果就是浮点数;否则,结果是一个整数

>>>10//4 
2  
>>>10//4.0 
2.0  

python2中

>>>10//4 
2  
>>>10/4.0  
2.5  
>>>10//4.0 
2.0  

你可能感兴趣的:(python基础学习以及3.X和2.X的不同)