Question: in python 1. Define a void function that prints each character of a string given as parameter, followed by a blank. Use a for loop
1. Define a void function that prints each character of a string given as parameter, followed by a blank. Use a for loop with a range or a while loop in your solution. Challenge: Print the characters of the string followed by a blank backwards.(No recursion!) Test your function. 2. Define of a void function printAddress. The function will accept one(!) string as parameter. This string has the format of an address: street address, city, province and postal code (items separated by commas, but one string). 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 between the first comma and the second comma. the province and the postal code is the substring after the second comma. Call and test your function with your own address as argument
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
