asked 4.7k views
3 votes
Test if value is not less than 13.6.

1 Answer

4 votes

value = whatever you want

if not value < 13.6:

print("Value is greater than or equal to 13.6.")

else:

print("Value is less than 13.6.")

answered
User Burrich
by
7.7k points

No related questions found