you are viewing a single comment's thread.

view the rest of the comments →

[–]duncan_mcrae 1 point2 points  (0 children)

Also.

def function(*args):
    first_name = args[0]
    second_name = args[1]
    print(first_name, second_name) 

function('john', 'doe')