Discuss How much deep should I learn Python? in the Python Programming forum on Dev Shed. How much deep should I learn Python? Python Programming forum discussing coding techniques, tips and tricks, and Zope related information. Python was designed from the ground up to be a completely object-oriented programming language.
Posts: 27
Time spent in forums: 5 h 39 m 6 sec
Reputation Power: 0
How much deep should I learn Python?
OK, I’ve read about 352/1214 pages of Learning Python Edition 4th Sept. 2009 by Mark Lutz.
And it is sure as hell that I’ll complete this book first then go for any other tutorial. Now, here’s my thing:
I want to learn programming to be capable enough to create something big like... I dunno; that ‘big’ will come later, but first, let’s focus on Python. I’ve browsed around on the internet and I’ve decided that my programming journey will include the following languages (sequence wise):
Python
Ruby
Perl
Lisp
C
C#
C++
Java
Javascript
PHP
Now, I need your help in directing me if I am wrong anywhere on my list or whether I need to include or exclude any/some redundant language(s) (I don’t think any language is redundant among these). And how much deep should I go in Python language?
Please help me out!
Posts: 1,833
Time spent in forums: 1 Month 2 Weeks 1 Day 53 m 25 sec
Reputation Power: 811
Hi,
your list of languages looks pretty arbitrary. It's basically just a collection of all current mainstream languages -- with the exception of Lisp, maybe.
It does make sense to learn different languages, but choose wisely. Don't just pick any language that happens to pop up on the first page of the Google results. Because that journey will be pretty boring, and it will probably leave you with only "a bit of everything" instead of real knowledge and real inspiration.
For example, when you know Java already, I doubt that C# will teach you anything new. When you know Python already, PHP won't be very interesting -- in fact, you'll probably find it disgusting.
First of all, I'd pick a language that really looks promising. Something you really want to learn more about. If Python is that language, great, stick with it.
When you get the feeling that you want to explore other languages, choose them by their specific attributes and your own interests. Are you into object orientation? Ruby or Smalltalk might be interesting for you. Do you like the idea of functional programming? Have a look at Haskell or Lisp. Do you like fumbling with bits and bytes close to the hardware? Check C. And so on.
I mean, it's like with natural languages: It doesn't make a lot of sense trying to learn English, Spanish, Portugese, Italian, French and German one after another. Instead, you pick a specific language with a specific goal in mind.
Posts: 3,345
Time spent in forums: 1 Month 2 Weeks 3 Days 6 h 47 m 59 sec
Reputation Power: 383
A programming language provides a means to express algorithms. There's more to your "something big" than knowing 13 programming languages. Algorithms + Data Structures = Programs by Wirth.
__________________
[code]Code tags[/code] are essential for python code!
Posts: 480
Time spent in forums: 3 Days 22 h 8 m 57 sec
Reputation Power: 63
Learn Python well enough to do an interesting project. Take a look at a lower level language like C to see what convolutions it would take to do your project.
Actually, Python and C or C++ do well together.
Another good combination is IronPython and C#.
__________________
Real Programmers always confuse Christmas and Halloween because Oct31 == Dec25
Posts: 132
Time spent in forums: 2 Days 6 h 13 m 3 sec
Reputation Power: 133
IMHO, it is not the number of languages which counts but how much you understand and master them deeply and of course how much do you like them (yes, it is also important to like what you do )