def print_it(name,marks):

    print()

    print(name,marks)

d={'name':'tom','marks':99}

print_it(*d)

print_it(**d)


OUTPUT :