int("10") # 10 int(9.8) # 9, the .8 is dropped float("3.5") # 3.5 float(7) # 7.0 print(int("10") + float(7)) # 17.0
Click Run to execute this code.