Print Cheatsheet
If we do not not specify a return value for a Python function, it returns None. This is the default behaviour.
None
# Function returning Nonedef my_function(): pass print(my_function()) #Output None