Quick actions

cmd+k|ctrl+k

Navigation

Languages

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

Snippet info

Language

Python

Visibility

public

Author

fenghestudio

Created

2019-11-23T10:58:50Z

Updated

2019-11-23T10:58:50Z

print('Python', python_version())
print('strings are now utf-8 \u03BCnico\u0394é!')

print('Python', python_version(), end="")
print(' has', type(b' bytes for storing data'))

print('and Python', python_version(), end="")
print(' also has', type(bytearray(b'bytearrays')))
INFO