python 3.6中的print函数使用时注意事项
Posted zmuyez
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 3.6中的print函数使用时注意事项相关的知识,希望对你有一定的参考价值。
1 #“hello %s”与%name之间不能加逗号 2 def hi(name): 3 print("hello %s" %name) 4 5 #“hello”与name之间加逗号 6 def hi(name): 7 print("hello " ,name)
以上是关于python 3.6中的print函数使用时注意事项的主要内容,如果未能解决你的问题,请参考以下文章
“void”函数中的 NoReturn 与 None - Python 3.6 中的类型注释