i know there are lot of solution regarding unrecognized token but all of them ocuuring while executing insert() query but i got error while creating a table. Here is a piece of code
def table_stats():
c.execute("""CREATE TABLE stats(
player text,
matches real,
runs real,
100s real,
50s real,
value real,
ctg text
)""")
conn.commit()
table_stats()
sqlite3.OperationalError: unrecognized token: "100s" i am working on a simple project and in hint section of problem statement it shows '100s' attribute of table but in my code it produce a error.