Pythor's Code Wars: Python Pitfalls

Here's where the battle-scarred veterans of Python go to relive the agony of debugging.

			
			def recursive_function(n):
				print(n)
				return recursive_function(n)
			

Don't get stuck in an infinite loop... of recursion.