Steps in learning Python

Thread Solved

Join Date: Aug 2005
Posts: 148
Reputation: Micko is on a distinguished road 
Solved Threads: 6
Micko Micko is offline Offline
Junior Poster

Steps in learning Python

 
0
  #1
Aug 19th, 2005
Hi, I wonder if you can give me any advice how to learn Python.
My plan is to read python tutorial in documentation from begining to the end, and then to get some book (learning Python, or Python in a nutshell).

How long it will take (in average) to get comfortable with the language?
I have a solid knowleadge of C and C++ and I see in Python documentation many reference to C, maybe Python is written in C?

I'm really very new to this language and to interpreted language as well, so I don't really know what all thah means, but hope you'll help to learn.
Can you give me some example applications that can be done in Python easily and maybe to compare with code and time needed to write them in C++

Thank you very much for your help, I must say that I found this forum very useful.

- Micko
Reply With Quote Quick reply to this message  
Join Date: Oct 2004
Posts: 3,972
Reputation: vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice vegaseat is just really nice 
Solved Threads: 920
Moderator
vegaseat's Avatar
vegaseat vegaseat is offline Offline
DaniWeb's Hypocrite

Re: Steps in learning Python

 
0
  #2
Aug 19th, 2005
A good tutorial for beginners is at:
http://www.byteofpython.info/

Also read through the Starting Python "sticky" and the Python code snippets here on DaniWeb. Above everything, run the code and experiment with it! Change it a little at first and then get braver!

I have bought a number of Python books, but don't think much of them. They are often outdated, poorly organized and indexed, also have quite a few mistakes in the code. Get books used, if possible!

Python is much easier to learn and understand than C or C++. Much of Python (eg. Python24.dll) is written in C and/or C++, but you don't have to be concerned with that.

Research has been published that claims that Python is about 10 times faster for developing a program than C++ or Java. They are talking about rather large and complex client requested programs. Both Google and Yahoo rely heavily on Python.

A typical example of Python code is ...
  1. # print out a given year's monthly calendar
  2.  
  3. import calendar
  4.  
  5. # if you want September 2005 use ...
  6. calendar.prmonth(2005, 9)
... try to do this with C++
Last edited by vegaseat; Aug 12th, 2009 at 1:34 pm.
May 'the Google' be with you!
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 148
Reputation: Micko is on a distinguished road 
Solved Threads: 6
Micko Micko is offline Offline
Junior Poster

Re: Steps in learning Python

 
0
  #3
Aug 19th, 2005
Originally Posted by vegaseat
A good tutorial for beginners is at:
http://www.byteofpython.info/

Also read through the Starting Python "sticky" and the Python code snippets here on DaniWeb. Above everything, run the code and experiment with it! Change it a little at first and then get braver!

I have bought a number of Python books, but don't think much of them. They are often outdated, poorly organized and indexed, also have quite a few mistakes in the code. Get books used, if possible!

Python is much easier to learn and understand than C or C++. Much of Python (eg. Python24.dll) is written in C and/or C++, but you don't have to be concerned with that.

Research has been published that claims that Python is about 10 times faster for developing a program than C++ or Java. They are talking about rather large and complex client requested programs. Both Google and Yahoo rely heavily on Python.
Thanks, now I'm even more willing to continue.
I've installed PyWin and I'll be using it. I will have more questions soon, I'm sorry if my questions sounds dumb, but I'll try whatever I think it can help me
Reply With Quote Quick reply to this message  
Join Date: Jul 2005
Posts: 1,221
Reputation: bumsfeld will become famous soon enough bumsfeld will become famous soon enough 
Solved Threads: 137
bumsfeld's Avatar
bumsfeld bumsfeld is offline Offline
Nearly a Posting Virtuoso

Re: Steps in learning Python

 
0
  #4
Aug 20th, 2005
I am still mostly using C. I know this probably a little bit old fashioned. I am following Python conversation closely too, looks like a interesting language to me. Does not have many many { and } and ;
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Python Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC