Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a function called mess that takes a phrase (i.e., a string) as input and then returns the copy of that phrase where each character

Write a function called mess that takes a phrase (i.e., a string) as input and then

returns the copy of that phrase where each character that is one of the last 8

consonants of English alphabet is capitalized (so, r, s, t, v, w, x,y , z) and where

each blank space is replaced by dash.

For this question, use a for loop over characters of a string, and accumulator.

(We will see, or have seen, that in Lecture 8 on Monday). When called from the

python shell, your function should behave as follows:

>>> mess('Random access memory ')

'Random-acceSS-memoRY--'

>>> mess('central processing unit.')

cenTRal-pRoceSSing---uniT.'

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

DB2 Universal Database V7.1 Application Development Certification Guide

Authors: Steve Sanyal, David Martineau, Kevin Gashyna, Michael Kyprianou

1st Edition

0130913677, 978-0130913678

Students also viewed these Databases questions

Question

Explain why households do not hold diversified portfolios.

Answered: 1 week ago