Created
April 11, 2019 07:11
-
-
Save PoplarYang/92d4ddfe13892e850da516f63d20e2fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| print 从 python2 到 python3 | |
| python2 不打印换行,在 print 的行尾加",",在 python2 体验python3 print,可以使用: | |
| from __future__ import print_function | |
| python3 print | |
| print("a", "b", sep=" ", end="\n") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment