Situatie
A dictionary in Python is a collection of data which is unordered and mutable. Unlike, numeric indices used by lists, a dictionary uses the key as an index for a specific value. It can be used to store unrelated data types but data that is related as a real-world entity. The keys themselves are employed for using a specific value.
Solutie
Pasi de urmat
In Python, everything is an object, so the dictionary can be passed as an argument to a function like other variables are passed.
Output:
key: b Value: 2 key: a Value: 1 key: c Value: 3
Passing Dictionary as kwargs
“kwargs
” stands for keyword arguments. It is used for passing advanced data objects like dictionaries to a function because in such functions one doesn’t have a clue about the number of arguments, hence data passed is be dealt properly by adding “**” to the passing type.
Leave A Comment?