To add more parameters to a function, we code a comma followed by the next parameter's name.
To pass a second value to the function, we code a comma followed by the value.
>>> def display(aa,bb):
... print(aa + " " + bb)
...
>>> display("an","apple")
an apple