print "Hello %s !!!" %("Pruthvish")
^
SyntaxError: invalid syntax
When I run this in python IDLE it prints the output, but when I run this program through windows powershell it gives me syntax error. Why does this happen?
print "Hello %s !!!" %("Pruthvish")
^
SyntaxError: invalid syntax
When I run this in python IDLE it prints the output, but when I run this program through windows powershell it gives me syntax error. Why does this happen?