what is the type of the data python code example
Example: what is the type of the data python
>>> type(1234)
>>> type(55.50)
>>> type(6+4j)
>>> type("hello")
>>> type([1,2,3,4])
>>> type((1,2,3,4))
>>> type({1:"one", 2:"two", 3:"three"}