Syntax Error With <>
I'm trying to do this assignment: This is what I have and I am getting a syntax error on > Pasted code: # Specify where the input and output file is InputFile = open('C:\Python
Solution 1:
Just replace "<>" with "!=", since "<>" is deprecate in python3,which can be used as "!=".
Post a Comment for "Syntax Error With <>"