↻
⏵︎ Run
def add(a, b, c = 0): sum = a + b + c return sum print('Result :', add(2, 3)) print('Result :', add(2, 3, 6))
Output