Python 3 -(2) Values and Variables
Python VALUES :- Basically values are the digits or letters used in python to perform certain task. These values has different types: 1.integer type(int) eg:- 2,5 2.floating point type(float) eg:- 3.0,2.0 3.string eg:- hello everyone ! VARIABLES :- Variable is the location in memory used to store some data (value) or simpl...