Using JES/Jython:
Function Name: noPuns()
Words- list of strings that will be analyzed
Q words can’t be punned, so write a function that takes in a list and tells you how many words are safe from being punned. Should work
regardless of capitalization!
Test Cases:
>>>noPuns(["quail", "bunny","butter","quack","quality"])
There are 3 words that start with Q.
>>> noPuns(["Queen","quota","british","dorito","Quoff","quickly"])
There are 4 words that start with Q.
def noPuns(lst):
count = 0
for x in lst:
if(x[0]=='q' or x[0]=='Q'):
count += 1
print("There are "+str(count)+" words that start with Q.")
# Testing
noPuns(["quail", "bunny","butter","quack","quality"])


Using JES/Jython: Function Name: noPuns() Words- list of strings that will be analyzed Q words can’t...
Write a function called most_consonants(words) that takes a list of strings called words and returns the string in the list with the most consonants (i.e., the most letters that are not vowels). You may assume that the strings only contain lowercase letters. For example: >>> most_consonants(['python', 'is', 'such', 'fun']) result: 'python' >>> most_consonants(['oooooooh', 'i', 'see', 'now']) result: 'now' The function that you write must use a helper function (either the num_vowels function from lecture, or a similar function that you...
Language: Python Topic: Tuples Function name : todo_tuple Parameters : todo (list of tuples of strings), completed (list of strings) Returns: final_list (list) Description : Write a function that takes in a list of tuples of strings that represents the work you have to do in each class, and a list of strings that represent the work you have already completed. Each tuple in the todo list represents the work for a single class. For this function, go through the...
Using the book, write another paragraph or two: write 170
words:
Q: Compare the assumptions of physician-centered and
collaborative communication. How is the caregiver’s role different
in each model? How is the patient’s role different?
Answer: Physical-centered communication involves the specialists
taking control of the conversation. They decide on the topics of
discussion and when to end the process. The patient responds to the
issues raised by the caregiver and acts accordingly. On the other
hand, Collaborative communication involves a...
Please read the article and answer about questions. You and the Law Business and law are inseparable. For B-Money, the two predictably merged when he was negotiat- ing a deal for his tracks. At other times, the merger is unpredictable, like when your business faces an unexpected auto accident, product recall, or government regulation change. In either type of situation, when business owners know the law, they can better protect themselves and sometimes even avoid the problems completely. This chapter...