subject

Implement the following functions

def normalize(input_string):

input: a string of text characters. Each character is called a token.

output: an array of 'letters'. Each item in the array corresponds to a letter in input_string (in lowercase)

for example, the input "O. K. #1 Python!" would generate the following list: ['o','k','p','y','t','h','o','n']
look at the documentation for string functions; don't try to replace, delete, or substitute -- if the 'token' is a letter it passes the test.

def find_missing_letters(sentence):

the input sentence is an array/list (created from normalize())

returns a sorted array of letters that are NOT in the sentence

use the built in Python type set to solve (see previous lesson)

def find_missing_letters_algorithm(sent ence):

the input sentence is an array/list (created from normalize())

returns a sorted array of letters that are NOT in the sentence

you must NOT use the set type

implement the function pipeline(), which pipes the output of each step in the pipeline process into the next stage. For example, if you had the functions a1, b2, c3, pipeline would just do something like return c3(b2(a1())).

The answer should read (inside out) and be a single line of code.

You can use either find_missing_letters_algorithm or find_missing_letters since both return the same output.

Your final stage should be calling visualize (already done)

starter code

import lesson

def test_missing_letters():
sentence = lesson. normalize("I am missing many letters")
s = lesson. find_missing_letters(sentence)
print(s)

# First test your implementation
test_missing_letters()

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 05:00
Pls do you believe that the use of 3d animation has grown in feature films over the last few years? if so, do you think the trend will continue? what are the forces driving this trend?
Answers: 2
question
Computers and Technology, 23.06.2019 03:30
How can you repin an image on your pinterest pin board a. click on the "repin" button b. click on the "add pin" button c. click on the "upload a pin" button d. click on the "save pin" button.
Answers: 2
question
Computers and Technology, 23.06.2019 15:00
1. which of the following statements are true about routers and routing on the internet. choose two answers. a. protocols ensure that a single path between two computers is established before sending packets over it. b. routers are hierarchical and the "root" router is responsible for communicating to sub-routers the best paths for them to route internet traffic. c. a packet traveling between two computers on the internet may be rerouted many times along the way or even lost or "dropped". d. routers act independently and route packets as they see fit.
Answers: 2
question
Computers and Technology, 23.06.2019 19:50
Which feature is selected to practice and save the timing of a presentation
Answers: 1
You know the right answer?
Implement the following functions

def normalize(input_string):

input: a stri...
Questions
question
Mathematics, 17.07.2021 01:00
question
Mathematics, 17.07.2021 01:00
question
English, 17.07.2021 01:00
question
History, 17.07.2021 01:00