"""WAP to read and print values of variables of different data types."""
# taking inputs
string_value = input("Enter a string: ")
integer_value = int(input("Enter an integer: "))
float_value = float(input("Enter a float: "))

# printing
print("String value:", string_value)
print("Integer value:", integer_value)
print("Float value:", float_value)

Embed on website

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