Archive for the 'Python' Category
Here are my thoughts at the moment:
Vertigo is scary.
I’m somewhat excited to learn how to program. How I dream to work in an IT related job.
Study Python, then PHP and get a job as a web programmer. It won’t happen right now and that way. Do it on the side.
What’ll happen: Get any job maybe [...]
Ok now I understand why:
>>> l = [1,2,3] #let’s create a list of numbers
>>> l = l.append(4) #let’s add the integer 4 to make it exciting
>>> l
>>>#What gives?!?!? Where is my list?
It’s because the method append returns the value None. That’s why l becomes empty.
