Skip to content Skip to sidebar Skip to footer

Cannot Run Python Script

I am trying to run this python script: https://gist.githubusercontent.com/nk9/b150542ef72abc7974cb/raw/4a1e249976c6c330116fc068fb7001e3443c5b8d/largestFiles.py but for some reason

Solution 1:

As print is function in python 3 you need to put your string in parenthesis. https://docs.python.org/3.0/whatsnew/3.0.html#print-is-a-function

>>> print ("Finding objects larger than kB\u2026")
Finding objects larger than kB…

Post a Comment for "Cannot Run Python Script"