Name:
Anonymous
2009-05-14 10:08
Runtime Error: maximum recursion depth exceeded
How annoying.
What's the maximum number of recursive calls you can make in FIOC?
def fioc(n):
"""The Forced Indentation Of Code"""
print(n, end=" ")
fioc(n+1)
Name:
Anonymous
2009-05-14 14:25
Python 2.6.2 (r262:71600, Apr 28 2009, 18:26:01)
[GCC 4.3.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> def fioc(n):
... """The Forced Indentation Of Code"""
... print(n, end=" ")
File "<stdin>", line 3
print(n, end=" ")
^
SyntaxError: invalid syntax
>>>
;__;