how to take decimal input in python code example
Example 1: python decimal input
yourvariable = float(input("YOURE QUESTION HERE"))
Example 2: how to let the user input desmials in python
input_desmial = float(input("this lets the user input a desmial(can only be an int"))
print(input_desmial)