# alphabet alphabets = 'abcdefghijklmnopqrstuvwxyz' # read sentence sentence = input('Enter sentence: ').lower() # check if each letter is present in alphabet missing = [] for letter in alphabets: # if not then add to missing if letter not in sentence: missing.append(letter) # if missing is empty if missing == []: print('The sentence has all the alphabets') else: # display the missing print("Following letters are missing:", missing)
FOR HELP PLEASE COMMENT.
THANK YOU.
Get Answers For Free
Most questions answered within 1 hours.