which of teh following is used to verify whether a variable contains a value python code example
Example: python check if string
type('hello world') == str
# output: True
type(10) == str
# output: False
type('hello world') == str
# output: True
type(10) == str
# output: False