I've created a basic script with Input options, but I'm not sure how I can get a simple addition with decimal numbers like 1.2 + 2.3
To this point I'm using
value1 = int(input("Choose one Number"))
value2 = int(input("Choose another Number"))
But these are only numbers without decimal points. Is there any option to use decimal point numbers?
Thanks in advance