Skip to main content

Posts

Showing posts from October, 2019

Python Programming Basics

Python is one of the powerful languages which has picked up the popularity after Machine Learning and Artificial Intelligence has boomed. I don't want to highlight on the why Python but how Python can be used. Here are the list of contents 1. Installation 2. Libraries 3. Data Structures 4. Loops 5. Exercises 1. Installation You get Python from Anaconda :) Download Anaconda  for your respective environments and install Launch Anaconda Navigator and you will see few options like Jupyter notebook, spyder, orange, rstudio etc. launch Jupyter notebook for python. Jupiter notebook will launch on your default browser and select the "New" -> "Python 3" option. A new tab will be opened with option to play with python. Click on the Untitled and rename appropriately as per your exercise/chapter. That's it we are all set for to get our hands dirty.. Let's jump into programming. 2. Libraries             For the basic program...