Python

From bibbleWiki
Revision as of 03:53, 15 July 2020 by Iwiseman (talk | contribs) (Created page with "= Python 2 and 3 differences = <syntaxhighlight lang="python"> print "fred" // OK Python 2 print("fred") // Not OK Python 2 </syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Python 2 and 3 differences

print "fred" // OK Python 2
print("fred") // Not OK Python 2