I am new to MySQL and I am trying to just test out python and MySQLdb. I was able to create a table in MySQL and print the contents in python.
TABLE:
name_number int(11) NO PRI
name varchar(45) YES
1 Bob
2 steve
Python Output:
(1L, 'Bob')
(2L, 'steve')
My Question is where is the "L" coming from? Sorry I know this is a stupid mistake, but I can't figure it out.