python2和3的一些區別
1.長整數的表示
python2自動在長整數後加上L,連長整數參加運算的表示式也是。
python2
>>> l=123456789012345678 >>> l 123456789012345678L >>> repr(l%2) '0L'
python3
>>> l=123456789012345678 >>> l 123456789012345678 >>> repr(l%2) '0'
相關文章
- Python2和Python3的區別Python
- python3和python2中的filter區別PythonFilter
- Python2和Python3的10大區別Python
- 詳解python2 和 python3的區別Python
- Python2 和 Python3 的區別及相容技巧Python
- Python2與Python3的區別Python
- 除法運算子/在Python2和Python3中的區別Python
- Python2和Python3的區別?Python入門學習Python
- Python2 中 input() 和 raw_input() 的區別Python
- Python2和Python3有何區別?小白入門必看!Python
- in和exists的一些區別
- urllib庫在python2和python3環境下的使用區別Python
- 學Python用哪個版本?Python3和Python2有何區別?Python
- DWC3和XHCI的區別
- python2和python3的不同Python
- linux核心和windows核心的一些區別LinuxWindows
- Python3中_和__的用途和區別Python
- 新手學習python2還是python3?詳細區別講解Python
- Python2與Python3有何區別?選擇哪個合適?Python
- 關於Vue和React區別的一些筆記VueReact筆記
- PWA 應用和原生應用的一些區別
- vue2 和 vue3的區別Vue
- 學Python用哪個版本?Python2與Python3有何區別?Python
- ../和./和/的區別
- SpringMVC(3)-request域和session域的作用和區別SpringMVCSession
- 新手學python哪個版本好?Python2與Python3有何區別?Python
- Flex,Flash,AS3,AIR的關係和區別FlexS3AI
- Python2和Python3中print的不同點Python
- python3 和 python2 input 功能的不同點Python
- 和 的區別
- as 和 with的區別
- ||和??的區別
- /*和/**的區別
- 用了群控和雲控之後的一些感想和區別吧?
- windows下 相容Python2和Python3WindowsPython
- LinkedList和ArrayList的區別、Vector和ArrayList的區別
- http和https的區別/get和post的區別HTTP
- round四捨五入詳解--python2與python3版本間區別Python