Python Learning Step One(Data types and variables)
Dear all, I want to describe you about python datatypes and variables. In python language there are several types of variables. Such as.. Integer String Float Boolean List Dictionaries Tuples Declaring A variable in python.. a = 10 # now a is integer variable b = 10.00 # now b is float variable c = ‘abc’…