#different data type a="hello" b=10.5 c=10 d=("ankur","vikrant") e={"name":"Ak","age":20} f=["hello",'world'] g=True print(a) print(b) print(c) print(d) print(e) print(f) print(g) print('\n\n') print(type(a)) print(type(b)) print(type(c)) print(type(d)) print(type(e)) print(type(f)) print(type(g))