Variables: Variables are reserved memory locations to store values. Which means that when you create a variable, will reserve some space in memory. Note: Python variables do not need explicit declaration to reserve memory space other languages like Java,C etc., The declaration happens automatically when you assign a value to a variable. The equal sign (=) is used to assign values to variables. So, in-turn, we should only focus on assignment of variable. Two ways of assignments: Single variable assignment Multiple variable assignment Example: Python Standard Data Types: Python has five standard data types Numbers String List Tuple Dictionary 1.Numbers: Number data types store numeric values. Python supports four different numerical types integers -> a=15 long integers -> a=1888L floating point -> a=9.8 complex numbers -> a=1+2j Note: A complex number consists of pair of real floating-point numbers denoted by x +...