Exercise: Create missing function

The code below expects a function named get_number that returns a value. Define the missing function. Ensure that the finally printed message is True.
# define function here...
result = get_number() < 5 print(result) # expected output: True
Python
Setting up Python environment...
Output