Variables in Python
Any value can be assigned to a name in python. The name is called variable. There is no need to declare the type of value is assigned to the name.
Example:
msg = 'An article about variable.'
likes = 100
A string is assigned to the variable name msg...
datailm.hashnode.dev2 min read