Функции

def add_3_and_print(value):
    print(value + 3)


add_3_and_print(5)
# prints 8