I\'m just learning python and confused when a \"def\" of a function ends?
I see code samples like:
def myfunc(a=4,b=6): sum = a + b return su
Python is white-space sensitive in regard to the indentation. Once the indentation level falls back to the level at which the function is defined, the function has ended.