-3

i have just download and install Python 3.5.2 , I have two python files that I want to run from CMD but I got the problem

SyntaxError: Missing parentheses in call to 'print'

The problem code reads:

print '####### ' + modulename
###########################################################
def sqlihunt(dork , filename ):
u8y7541
  • 548
  • 2
  • 8
  • 13
Anas N
  • 5
  • 1

1 Answers1

1

print statement in python 3 requires parentheses.

e.g.: print(whatever you want to print goes here)

Vikas
  • 1,900
  • 1
  • 19
  • 20