Exercise: Fix function definition

There's a mistake in the function definition below. Correctly define a function named get_number that returns the value 10. If successfull, the print() function will output True.
# fix code here...
get_number:
return 10 print(get_number() == 10) # expected output: True
Python
Setting up Python environment...
Output