Question: Python 3 I will give thumbs up for all the correct answers. Paste code that I can copy easily and also show your output Question:
Python 3
I will give thumbs up for all the correct answers.
Paste code that I can copy easily and also show your output Question:

Write a function named as 'build_profile for building a dictionary containing everything we know about a user. This function has four arguments. The first three arguments accept user's name including the first name, the middle name, and the last name. The middle name should be set to be empty string. The fourth argument of this function is an arbitrary argument that can accept any number of keyword pairs. For example, when we call this function like build_profile('Peter', 'Hendrix', location = 'China', age = 23), it will return a dictionary as ('first name': 'Peter', 'last name: 'Hendrix', 'location': 'China', 'age: 23). Call this function twice by passing different name and different numbers of keyword pairs
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
