Running this code
res = cursor.execute("SELECT `password` FROM `players` WHERE `username` = %s", usern)
I get this error:
mysql.connector.errors.ProgrammingError: 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '%s' at line 1
playersWHEREusername= %s """ res = cursor.execute(sql, usern) print (res) gives me same errorpasswordFROMplayersWHEREusername= %s" % usern