def cube(n, /): """Takes in a number n, returns the cube of n""" return n**3 cube(n=2) # [positional-only-arguments-expected]