TypeError: Argument 'x' can not be safely parsed to 'float' code example
Example: parse int python
value1 = "10"
value2 = 10.2
print(int(value1))
print(int(value2))
value1 = "10"
value2 = 10.2
print(int(value1))
print(int(value2))