x = 5  
print("The type of x", type(x))  
  
y = 40.5  
print("The type of y", type(y))  
  
z = 1+3j  
print("The type of z", type(z))  
print(" c is a complex number", isinstance(1+3j,complex))

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: