It is always easy to learn new technology if you have proper learning documentations. To get started python, and jump starting the use of python language, i joined a study group and got the really good learning documentations.
1. To work on any language, platform we need to setup the SDK( Software development kit ) in the computer. In python, world,
1. To work on any language, platform we need to setup the SDK( Software development kit ) in the computer. In python, world,
- Download and install Anaconda, https://www.anaconda.com/download/ and you can read the documentation from here. http://docs.anaconda.com/anaconda/user-guide/getting-started/
- Previous installation willl already install python in your computer. If you don't want to install Anaconda, you can install python from here and install, https://www.python.org/downloads/
- Now, we need the good code editor to write the lines of code. For this, you can useVisual Studio Code ( https://code.visualstudio.com/download ) or Atom ( https://atom.io/ ) or IDE of your any choice.
- After this is done, you are ready to write the python code in your machine. Search and open command promt, and test that the python is installed. Type, "py --version" ( if version > 3 ), or "python --version" ( if < 3 )
2. Now we need really good tutorial to get started. For this,
- If you like to start learning by watching the lecture videos, you can try coursera ( https://www.coursera.org/learn/python )
- Try this documentation, https://www.py4e.com/html3/01-intro
- Use beautiful online book, http://guidetodatamining.com/
Comments
Post a Comment