Saturday, 3 February 2018


Getting Started


Python is one of the easiest language of programming you can code in.
Python is very easy to switch from any other programming languages like C, Java, etc.

Let's get started.
First make sure that you have downloaded the python software (version >=3).
If not, download from this link : https://www.python.org/downloads/

Note : I will be using windows to use python.

1)Basic Data Types :
     i)    int
     ii)   float
     iii)  String
     iv)  list
     v)   tuple
     vi)  dictionary
     vii) set
      

No comments:

Post a Comment

Memoization : Memoization is a technique for remembering the results that incur huge costs to running time to the algorithm. Memoizati...