>>
>>5292
>>4986
>>5216
You should never, ever, take programming advice from someone who recommends python as a first programming language. Why? Well for one, this advice right here is just bizarre:
>>5220
>it teaches programming concepts such as indentations
My god; WHO IN THEIR RIGHT MIND WOULD CHOOSE PYTHON TO TEACH SOMEONE ABOUT ...
indentation?
First off, the idea that you would choose a language to teach indentation is... to say the least, odd.
The only thing you need to know about indentation is this:
1. Indentations are 8 characters wide. If you meet someone who swears by 2 indentations, they are a bad programmer.
2. Indentations are tabs, not spaces.
3. If you are complaining about having run out of room to code, because your indentations are too large, you should consider retroactively aborting your code, or yourself, because you have screwed up.
4. Thus, while learning, your code should not go past 3 indentations as a matter of principle. When that habit is firmly in place, then 5 indentations becomes the real limit.
And second off, I suspect what he really meant by indentation, was the concept of scope...
Which again, why you would choose python to teach about scope, is bizarre. Any language lacking pointers, is the last thing youd want to use.
Go with Qt if you want to learn to program.