Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

need a simple python code. thanks :) CS 100 while%2Fbreak%2Fconti nue Homework Protected View Saved to this PC Mailings Review HelpO Tell me what you

image text in transcribed

image text in transcribed

need a simple python code. thanks :)

CS 100 while%2Fbreak%2Fconti nue Homework Protected View Saved to this PC Mailings Review HelpO Tell me what you want to do View Read Chapter 7 in the textbook. Read Section 44 of the Python tutorial Problem 1. This problem provides practice using a while True loop Write a function named twoWords that gels 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, firsfL etter, that is the first letter of the second word The second word may begin with either an upper or lower case instance of firsfl etter The tunction twoWords should retum 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 d-letter word please two Enter a 4-letter word please one Enter a -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 l'tour', 'banana ) Problem 2. Write a function named twoWordsV2 that has the same specilication 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 Problern 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

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

Step: 3

blur-text-image

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

Oracle 10g Database Administrator Implementation And Administration

Authors: Gavin Powell, Carol McCullough Dieter

2nd Edition

1418836656, 9781418836658

More Books

Students also viewed these Databases questions

Question

What are the two basic laws of probability?

Answered: 1 week ago