dreadatour / Flake8Lint

Sublime Text plugin for lint Python files
234 stars 58 forks source link

print() line problem occur in Pyhton. #122

Open dhmodh opened 4 years ago

dhmodh commented 4 years ago

print(chr(x), end="")

For this line getting error:- print(chr(x), end="") ^ SyntaxError: invalid syntax

And I am using Python 2.7.17

apollodatasolutions commented 1 year ago

This is not valid Python 2. In Python 2, you do print chr(x)