Friday, January 20, 2012

Python Reference Link

In this post I will include all the reference I used when I am learning Python, some of them are textbook, some of them are website.

  • http://effbot.org/tkinterbook/tkinter-whats-tkinter.htm
    Very easy and simple to read, proivde a good starting point if you never done any kind of GUI before. It is very short and to the point, there are no complicated theory or other information. Not to say it is not important however, but to get you up to speed and start writing software, it is great!
  • http://stackoverflow.com/questions/tagged/python
    A google for programming related question, actually it is a really good idea to just read the questions and the answers. Sometimes it is like little trick and tips, sometimes it is the concept explained in another point of view that is not like from a textbook, but from a working professional programmer. It fits the bill of learning something everyday ;)
  • http://python.net/~goodger/projects/pycon/2007/idiomatic/handout.html
    It is like a python programming guide with a lot of cool tips and trick that a new programmers might overlook. Good read, and interesting.
  • http://docs.python.org/tutorial/
    The best tutorial there is for beginner learning how to write program in python. It talks about a lot of the buildin function, type, module. It shows great example code as well as the required parameters and return type.

No comments:

Post a Comment