Quick actions

cmd+k|ctrl+k

Navigation

Languages

Python 3 和 Python 2 的主要区别:2

Snippet info

Language

Python

Visibility

public

Author

fenghestudio

Created

2019-11-23T10:50:11Z

Updated

2019-11-23T10:50:11Z

print('Python', python_version())
print('3 / 2 =', 3 / 2)
print('3 // 2 =', 3 // 2)
print('3 / 2.0 =', 3 / 2.0)
print('3 // 2.0 =', 3 // 2.0)
INFO