runeazn
01-10-2012, 07:02 PM
So when i type
a = [1]
a.append ("lol")
i get a = [1, 'lol']
when using a.append (lol)
i get a = [1, lol]
I wonder does the interpreter think the lol are different things or what?
what does the ""-marks add for difference to the interpreter?
a = [1]
a.append ("lol")
i get a = [1, 'lol']
when using a.append (lol)
i get a = [1, lol]
I wonder does the interpreter think the lol are different things or what?
what does the ""-marks add for difference to the interpreter?