def Test_1():
    x = 1
    for i in range(0,6):
        y = "Road" + str(x) + "()"
        y
        x = x + 1
        print("end")
What would be the correct way to call Function: Road1() - Road6() ? Like this :
def Test_1():
    Road1()
    Road2()
    Road3()
    Road4()
    ...
    Road6()
    print("end")
 
    