#different types of variables x=str(5),"ankur" a,y=float(19),87 z=int(5) print(x) print(y) print(z) print(type(x)) print(type(y)) print(type(z))