I'm somewhat new to Python and I want to create a function that takes a parameter that is an dictionary that contains multiple entries. The function has an object with some given properties (e.g.: color, title, description...). If the dictionary from the paramter contains an entry named 'color' it should give the object's property the value of 'color', otherwise the property 'color' in the object should be undefined/empty. I know that in JavaScript this is simply done as following:I'm somewhat new to Python and I want to create