mercredi 11 mars 2015

while and loop and break (python) [on hold]


Vote count:

-9




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:


i. an integer, length, that is the length of the first word and ii. 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 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'))
A 4-letter word please two
A 4-letter word please one
A 4-letter word please four
A word beginning with B please apple
A word beginning with B please pear
A word beginning with B please banana
['four', 'banana']


Problem 2. 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.





asked 4 mins ago







while and loop and break (python) [on hold]

Aucun commentaire:

Enregistrer un commentaire