Question: plz help with these two python programming code Write a function wordParity with a unique parameter text (of type string), that returns True if the

Write a function wordParity with a unique parameter text (of type string), that returns True if the number of characters of text is even and False otherwise. Add a small docstring to describe your function. In the main program, ask the user how many words he would like to enter, then ask him to enter these words and finally display the number of words with even parity. See sample run below: Enter the number of words to be checked: 4 Enter word 1 : This Enter word 2 :lab Enter word 3 :is Enter word 4 : easy You entered 3 words of even length See the below sample run: Enter an integer: 10 Enter an integer: 23 Enter an integer: 52 Enter an integer: 63 Enter an integer: 84 Enter an integer: 65 Enter an integer: 12 Enter an integer: 10 Enter an integer: 96 Enter an integer: 5 We just built the following list: [10,23,52,63,84,65,12,10,96,5] The 1st element in your 1 ist is: 10 The 2 nd element in your list is: 23 The 3 rd element in your list is: 52 The 4 th element in your list is: 63 The 5 th element in your list is: 84 The 6 th element in your 1 ist is: 65 The 7 th element in your list is: 12 The 8 th element in your list is: 10 The 9 th element in your list is: 96 The 10th element in your list is: 5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
