Exercise: Logical operators - or

Complete the code to check if num is either less than or greater than 5. Use the logical or operator.
num = 10 # complete here...
is_true = num < 5
print(is_true) # Expected output: True
Python
Setting up Python environment...
Output