Menu

#1 cpat 2.0.0 print statements generate errors

2.0
open
nobody
None
2019-06-11
2019-06-11
No

In python3 staements like the following will create errors:

print >>fileobj, "Blah"

They need to be adjusted to confirm python3 style.

print("Blah", file=fileobj)

Discussion


Log in to post a comment.