Try to change
if model1 < int(4):
to
if int(model1) < 4:
and you would need exception handling with try as well.
2
solved If and Else function [duplicate]
Try to change
if model1 < int(4):
to
if int(model1) < 4:
and you would need exception handling with try as well.
2
solved If and Else function [duplicate]