Day04-Variable and Data Types
What is Variable?
Variable - is like a container that holds data.
Example:
a = 1234453734563455
print(a)
b = "Harry"
print(b)
Output:
1234453734563455
"Harry"
Data Type:
Data types specify the type of data that can be stored inside a variable. It i...
codingsplash.hashnode.dev4 min read