Fork me on GitHub

  1. Python install location and version

    July 30, 2013

    Have you ever wondered how to check the install path of python and it's version ? If you have then this post is for you. It is very easy to check the version and install location of python on linux as well as on windows. First I will show the ...

    read more
  2. Coding styles for python

    July 29, 2013

    Yet another useful post and this one is about coding styles in python. Everyone has his own coding style in python. Here i am going to post some links that will help you to choose your own coding style in python.

    • The first link is undoubtedly from the official python ...

    read more
  3. Setting up python on windows

    July 29, 2013

    Hi there pythonistas. Most of the new python programmers don't know how to correctly install python on windows. Today I am going to share clean and clear instructions on how to install python on a Windows 7 machine. There are only 4 steps involved so without wasting a minute ...

    read more
  4. Packaging your python scripts.

    July 29, 2013

    Oh hi there! Welcome to another useful post. This post is going to be about how to package your python scripts and packages for distribution on PyPI or some other place.Here I won't go too deep into explaining everything as most of us just need to know the ...

    read more
  5. Dictionaries have a get() method

    July 29, 2013

    Okay here we are with yet another post. However this post is going to be short as in this post i am going to teach you a small, simple and very useful trick. Have you ever tried to access a value from a dictionary and got an exception that there ...

    read more
  6. The use of return and global keywords.

    July 28, 2013

    Okay so here we have another post. This post is about the return keyword. you might have encountered some functions written in python which have a return keyword in the end of the function. Do you know what it does ? Lets examine this little function:

    >>> def add(value1,value2):
    ...     return ...
    read more

« Page 7 / 8 »