intermediate python lesson 3: Solution: Create Profile
Solution
yt link
One possible implementation of the create_profile function is:
def create_profile(given_name, *surnames, **details):
print(given_name, *surnames)
for key, value in details.items():
print(key, value, sep=': ')
The func...
philipdevblog.hashnode.dev1 min read