Wypełnij luki w funkcji inicjałów, aby w górnym przypadku zwraca inicjały słów zawartych w wyrażeniu.
def get_initials(fullname):
xs = (fullname)
name_list = xs.split()
initials = ""
for name in name_list: # go through each name
initials += name[0].upper() # append the initial
return initials
Comfortable Cod