variables_python
variables_python
Variables is a like a container that holds the data. creating a variable is like
creating a placeholder in memory and assigning it some values.
3. BOOLEAN DATA
contains values like True and False
4. SEQUENCED DATA
(1,2,3,4,),("apple","banana","orange")
5. MAPPED DATA
a) dict-- a dictionary is an unordered collection of data containing a key:value
pair. and enclosed by curly brackets.
{"name":"Jack","title":"duniya ka papa","aura":10000000}