Get the order wrong and your function misbehaves: python def divide(a, b): return a / b print(divide(10, 2)) # 5.0 print(divide(2, 10)) # 0.2 Same numbers, different order, different result.
For operations like division where order matters, pay attention. Later you'll learn keyword arguments, which let you specify by name instead of position.