Posted on 16th September 2024|48 views
How many types of variables are there in python
Posted on 16th September 2024| views
Variables are some reserved memory locations to store the values, which means whenever you create a variable, you are reserving some memory space.
Depending upon the data type of the variable the interpreter assassins memory and decides what to store within that reserved memory that means by assigning various data types to variables you can save decimals, floating-point numbers and characters just like the example shown below.
Count = 10
Name = “nishanth”
Miles = 58.62
Print Count
Print Name
Print Miles