Question: its python For your code use one file. Defino and call all of the following functions 1. Define a void function that prints a string

 its python For your code use one file. Defino and call
its python

For your code use one file. Defino and call all of the following functions 1. Define a void function that prints a string given as parameter backwards, each character must be followed by a dot. Print in one line. Do not use recursive calling of your function Test your function 2. Define a void function printAddress. The function will accept a string as parameter. This string has the format of an address street address, city, province and postal code (items soparated by commas) For any address entered as argument, the function will print out the street address, the postal code with the city, and the province on a separate line. How to solve the problem Use the string method find ...) to find the indices of the commas and then apply string slicing The street address is the substring before the first comma o The city is the substring betwoen the first comma and the second comma, o the province and the postal code is the substring after the second comma. Call and test your function with your own address as argument 3. Define a value-returning function trimBlanks with one string parameter. The function will remove all blanks at the beginning of any string given as parameter and return the changed string 1 Do not use the string method trime..... Call and test your function in a print statement. Test your function using the following arguments: a)" House b)" * Gust blanks) c)** (empty string) Challenge a) Also remove all blanks at the end of the string given as parameter

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!