Python True Keyword

True is a boolean value that indicates that that a value or the result of a comparison in true.

Example

Python
result = True    # using True directly

if result:
    print("result is true")
	
result = 1 < 2  # result will be True because 1 < 2