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 first Letter. 4 The function twoWords should return the two words in a list. Use a while True loop and a break statement in the implementation of twoWords. The following is an example of the execution of twoWords: print(twoWords (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
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 first Letter. 4 The function twoWords should return the two words in a list. Use a while True loop and a break statement in the implementation of twoWords. The following is an example of the execution of twoWords: print(twoWords (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
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
please make it copy-pasteable in python.
![Problem 1
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.
4
The function twoWords should return the two words in a list. Use a while True loop and a break statement
in the implementation of twoWords.
The following is an example of the execution of twoWords:
print(twoWords (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']](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F76eec8ec-d87c-4fdd-96a3-96e8325f09a2%2F9ea312ce-d8ec-4a4e-a619-72d4b5383515%2Furb5c3f_processed.jpeg&w=3840&q=75)
Transcribed Image Text:Problem 1
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.
4
The function twoWords should return the two words in a list. Use a while True loop and a break statement
in the implementation of twoWords.
The following is an example of the execution of twoWords:
print(twoWords (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']
![Write a function named twoWordsV2 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.
Problem 3
Write a function named enterNewPassword. This function takes no parameters. It prompts the user to
enter a password until the entered password has 8-15 characters, including at least one digit. Tell the
user whenever a password fails one or both of these tests.
Problem 4
Implement the GuessNumber game. In this game, the computer
.
.
Think of a random number in the range 0-50. (Hint: use the random module.)
Repeatedly prompt the user to guess the mystery number.
If the guess is correct, congratulate the user for winning. If the guess is incorrect, let the user know if
the guess is too high or too low.
After 5 incorrect guesses, tell the user the right answer.
The following is an example of correct input and output.
I'm thinking of a number in the range
Guess 1? 32
32 is too high
Guess 2? 18
18 is too low
Guess 3? 24
You are right! I was thinking of 24!
50. You have five tries to guess it](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F76eec8ec-d87c-4fdd-96a3-96e8325f09a2%2F9ea312ce-d8ec-4a4e-a619-72d4b5383515%2Fgwc0v57_processed.jpeg&w=3840&q=75)
Transcribed Image Text:Write a function named twoWordsV2 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.
Problem 3
Write a function named enterNewPassword. This function takes no parameters. It prompts the user to
enter a password until the entered password has 8-15 characters, including at least one digit. Tell the
user whenever a password fails one or both of these tests.
Problem 4
Implement the GuessNumber game. In this game, the computer
.
.
Think of a random number in the range 0-50. (Hint: use the random module.)
Repeatedly prompt the user to guess the mystery number.
If the guess is correct, congratulate the user for winning. If the guess is incorrect, let the user know if
the guess is too high or too low.
After 5 incorrect guesses, tell the user the right answer.
The following is an example of correct input and output.
I'm thinking of a number in the range
Guess 1? 32
32 is too high
Guess 2? 18
18 is too low
Guess 3? 24
You are right! I was thinking of 24!
50. You have five tries to guess it
Expert Solution
![](/static/compass_v2/shared-icons/check-mark.png)
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 3 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education