If I have different functions with increasing numbers in their names how do I loop through them? For example:
def Func1():
    something something
def Func2():
    something something
def Func3():
    something something
can I loop through them with a:
for i in range(1,4):