Intro-to-Jinja-tpl-v2/inner_functions.py

12 lines
210 B
Python
Raw Normal View History

2024-02-13 13:04:17 +00:00
def parent(num):
2024-02-13 12:30:45 +00:00
def first_child():
2024-02-13 13:04:17 +00:00
return "Hi, I'm Elias"
2024-02-13 12:30:45 +00:00
def second_child():
2024-02-13 13:04:17 +00:00
return "Call me Ester"
2024-02-13 12:30:45 +00:00
2024-02-13 13:04:17 +00:00
if num == 1:
return first_child
else:
return second_child