What I want is:
if 1700 / 1000 = 1.7 = int(1) # I want this to be True
lst.append("T")
My original code was:
if 1700 / 1000 == int(1) # This is False and I want it to be True
lst.append("T")
The if statement is False because the answer is 1.7 and not 1. I would like this to be True. So I want the 1.7 to round down to 1 using int so that the if statement will be True.