Answer to Question #283508 in Python for kika

Question #283508

Write a function called missing_letters that takes a string parameter and returns a new string with all the letters of the alphabet that are not in the argument string. The letters in the returned string should be in alphabetical order. 

Your implementation should use a histogram from the histogram function. It should also use the global variable alphabet. It should use this global variable directly, not through an argument or a local copy. It should loop over the letters in alphabet to determine which are missing from the input parameter. 

The function missing_letters should combine the list of missing letters into a string and return that string. 


1
Expert's answer
2021-12-30T07:13:49-0500

alphabet = 'abcdefghijklmnopqrstuvwxyz'


test_miss = ["abcd", "fgmnor"]


def histogram(s):

  hist = []

  for i in alphabet:

    if not((i in s) or (i.upper() in s)):

      hist.append(i)

  return hist


def missing_letters(foo):

  ans = histogram(foo)

  ans.sort()

  ans = ''.join(ans)

  if len(ans)==0:

    print("It uses all the letters")

  else:

    print(ans)


for i in test_miss:

  print("Calling the function test_miss: \n")

  missing_letters(i)

  print()



Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS