Today we will learn about variables, data types, and operators. Variables: We use variables to store values. Ex: name = "John" age = 45 Here, name and age are variables. As we discussed on day-1 in python, we need not declare the variable type, base...