An example of a function without a return in Python
# Kino Rose - NierPixel - https://nierpixel.com/ | |
# No Return Function | |
def secret_addition(num_one:int, num_two:int)->None: | |
num_one + num_two | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment