1print("Their is nothing like double in python ")
2print("In python float is used for decimals input")
3# Example
4num = float(input("Enter any decimal Number"))
5print(type(num))
1>>> type(1234)
2<class 'int'>
3>>> type(55.50)
4<class 'float'>
5>>> type(6+4j)
6<class 'complex'>
7>>> type("hello")
8<class 'str'>
9>>> type([1,2,3,4])
10<class 'list'>
11>>> type((1,2,3,4))
12<class 'tuple'>
13>>> type({1:"one", 2:"two", 3:"three"}
14<class 'dict'>
15