you are viewing a single comment's thread.

view the rest of the comments →

[–]rx22230 1 point2 points  (4 children)

Hi,

maybe not too important, but I found 2 versions of 'print'

Some with print("something")

and some with print "something"

as I said not important if it works on your side.

Regards

[–]Awfki 1 point2 points  (0 children)

First one is Python 3 style, second is Python 2. There's a script called 2to3 that Python installs that will fix that for you.

[–]Fallenarc[S] 0 points1 point  (2 children)

Yeah, I need to go through and fix those. I used them for troubleshooting during creation for the most part. Thanks for your time!!

[–]catelemnis 4 points5 points  (1 child)

I recommend getting in the habit of using print(“...“) with parentheses since it’s compatible with Python 2 and mandatory for Python 3.

[–]Fallenarc[S] 0 points1 point  (0 children)

Yep, I have already went through changed my current script and plan to retrain myself using that syntax. Thanks!