python3没营养的填坑,BUG:python2和python3的print不兼容

python2:

print 'abc'

python3:

print('abc')

python3中的print 变成函数了,要带()

https://blog.csdn.net/qiximiao123/article/details/79235604

猜你喜欢

转载自blog.csdn.net/weixin_41036461/article/details/83310319