#Authore: James Tam #Version: 2017 #Learning: Implements tail recursion (last instruction in recursive function) #is a call to that function. Each call performs a task before the recursive call. def tail(no): if (no <= 3): tail(no+1) print(no) return() tail(1)