USE PYTHON 2-the following lower cases letter are written partly below the basel
ID: 3803368 • Letter: U
Question
USE PYTHON
2-the following lower cases letter are written partly below the baseline:g,j,p,q,y. We say that these letter has a descender
.Write a function named hasDescender () that returns a list of words in a string in which at least one letter has a descender.A word should appear in the return list at least once, no matter how many letter in it have descenders and no matter how many times the word occurs in the input string. You may assume that the input consists of only lower case letters and spaces. no punctuaction or upper case letters. the order in the return list doesnt matter.
input:a string s that consists of words ,separated by spaces and return: a list of words in s that contain at least one descender
Explanation / Answer
#==========================================================
def hasDescender(line):
descenderChar =set('gjpqy')
desen = []
words = line.split(" ");
for word in words:
if any((c in descenderChar) for c in word):
desen.append(word)
setOfWords = set(desen)
return setOfWords
def main():
list = hasDescender("lkjafd adfk kj kj")
print list;
main()
#==========================================================
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.