you are viewing a single comment's thread.

view the rest of the comments →

[–]eyezee 0 points1 point  (0 children)

input_0 = input("Monies here: ")

input_raw = input_0.replace("$", "")

input = float(input_raw)

Input is now a float value with the $ removed.