What are variable As the name suggest a variable is entity whose value can be changed any time you want. In other programming language like C,C++,Java we have a special command to declare variable.In these language we also have to mention the type of value variable is storing whether its Integer,characters or decimal. But don't worry its python you don't need any command to declare a variable.Its declared when you first equate the value to a variable. X = 5 (X is treated as integer) Y = "Hello" (Y is treated as string due to " ") Z = 5.6 (Z is treated as decimal) Datatype Data type refer to the type of value a variable is storing There are basically three type of datatype Integer --- These contains integral Data 5,4,47,100.We can apply mathematical operation to these String ---- These datatype contains words characters any...