Python - String Operations - 1 Define a function `stringoperation` that takes four parameters, namely 'fn', 'ln', 'para' as a string, and 'number' as an integer. The function definition code stub is given in the editor. Generate the print statements based on the condition given as follows: First print: concat 'fn', 'number' times the number of newline character and 'ln' Second print: 'concat' 'fn' , tab space and 'ln' Third print: Prints the 'number' multiples of the string 'fn' Fourth print: Prints the 'para' string using f-string as follows: The sentence is {para} Input Format for Custom Testing The input from stdin will be processed as follows and passed to the function: The first line contains a string 'fn' , the first name. The second line contains a string 'ln' , the last name. The third line contain...
Python programming related things