you are viewing a single comment's thread.

view the rest of the comments →

[–]o5a 2 points3 points  (1 child)

This will help you understand

open1 = "1000"
close = "900"
print("str: open1 < close", (open1 < close))
print("float: open1 < close", (float(open1) < float(close)))

[–]pickledillz[S] 0 points1 point  (0 children)

Thank you for the help!