1:45 PM Sun Nov 24 < Homework 08 - while Loop.docx Problem 1 Switch To Light Mode This problem provides practice using a while True loop. Write a function named twoWords that gets and returns two words from a user. The first word is of a specified length, and the second word begins with a specified letter. The function twoWords takes two parameters: 1. an integer, length, that is the length of the first word and 2. a character, firstLetter, that is the first letter of the second word. The second word may begin with either an upper or lower case instance of firstLetter. The function two words should return the two words in a list. Use a while True loop and a break statement in the implementation of two words. The following is an example of the execution of twoWords: print(two Words(4, 'B')) Enter a 4-letter word please: two Enter a 4-letter word please: one Enter a 4-letter word please: four Enter a word beginning with B please: apple Enter a word beginning with B please: pear Enter a word beginning with B please: banana ['four', 'banana'] ☐ Problem 2 Write a function named two wordsV2 that has the same specification as Problem 1, but implement it using while and not using break. (Hint: provide a different boolean condition for while.) Since only the implementation has changed, and not the specification, for a given input the output should be identical to the output in Problem 1.

Principles of Information Security (MindTap Course List)
6th Edition
ISBN:9781337102063
Author:Michael E. Whitman, Herbert J. Mattord
Publisher:Michael E. Whitman, Herbert J. Mattord
Chapter10: Implementing Information Security
Section: Chapter Questions
Problem 3CEDQ
icon
Related questions
Question
Using python editor IDLE
1:45 PM Sun Nov 24
<
Homework 08 - while Loop.docx
Problem 1
Switch To Light Mode
This problem provides practice using a while True loop.
Write a function named twoWords that gets and returns two words from a user.
The first word is of a specified length, and the second word begins with a
specified letter.
The function twoWords takes two parameters:
1. an integer, length, that is the length of the first word and
2. a character, firstLetter, that is the first letter of the second word. The second
word may begin with either an upper or lower case instance of firstLetter.
The function two words should return the two words in a list. Use a while True
loop and a break statement in the implementation of two words.
The following is an example of the execution of twoWords:
print(two Words(4, 'B'))
Enter a 4-letter word please: two
Enter a 4-letter word please: one
Enter a 4-letter word please: four
Enter a word beginning with B please: apple
Enter a word beginning with B please: pear
Enter a word beginning with B please: banana
['four', 'banana']
☐
Problem 2
Write a function named two wordsV2 that has the same specification as
Problem 1, but implement it using while and not using break. (Hint: provide a
different boolean condition for while.)
Since only the implementation has changed, and not the specification, for
a given input the output should be identical to the output in Problem 1.
Transcribed Image Text:1:45 PM Sun Nov 24 < Homework 08 - while Loop.docx Problem 1 Switch To Light Mode This problem provides practice using a while True loop. Write a function named twoWords that gets and returns two words from a user. The first word is of a specified length, and the second word begins with a specified letter. The function twoWords takes two parameters: 1. an integer, length, that is the length of the first word and 2. a character, firstLetter, that is the first letter of the second word. The second word may begin with either an upper or lower case instance of firstLetter. The function two words should return the two words in a list. Use a while True loop and a break statement in the implementation of two words. The following is an example of the execution of twoWords: print(two Words(4, 'B')) Enter a 4-letter word please: two Enter a 4-letter word please: one Enter a 4-letter word please: four Enter a word beginning with B please: apple Enter a word beginning with B please: pear Enter a word beginning with B please: banana ['four', 'banana'] ☐ Problem 2 Write a function named two wordsV2 that has the same specification as Problem 1, but implement it using while and not using break. (Hint: provide a different boolean condition for while.) Since only the implementation has changed, and not the specification, for a given input the output should be identical to the output in Problem 1.
Expert Solution
steps

Step by step

Solved in 2 steps with 4 images

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Principles of Information Security (MindTap Cours…
Principles of Information Security (MindTap Cours…
Computer Science
ISBN:
9781337102063
Author:
Michael E. Whitman, Herbert J. Mattord
Publisher:
Cengage Learning