En utilisant ** kwargs pour transmettre les arguments de mots clés variables à la fonction

# Welcome to softhunt.net
def intro(**data):
    print("\nData type of argument:",type(data))

    for key, value in data.items():
        print("{} is {}".format(key,value))

intro(Firstname="Ranjeet", Lastname="Kumar", Age=22, Phone=1122334455)
intro(Firstname="Softhunt", Lastname=".net", Email="[email protected]", Country="Pakistan", Age=22, Phone=1122334455)
Outrageous Ostrich