A positional is a argument in a function which has a set position. For example ```python def test(ap

A positional is a argument in a function which has a set position. For example
def test(apple, banana):
Obviously you can't pass a banana into an apple. So when you pass in your arguments it must go apple, banana
Was this page helpful?