111. Write a Python program to get a string and print n (non-negative integer) copies of a given string using function. def larger_string(str, n): result = "" for i in range(n): result = result + str return result print(larger_string('patel', 2)) print(larger_string('.py', 3)) Output: patelpatel .py.py.py 212. Write a Python program to find whether a given number (accept from the user) is even or odd, print out an appropriate message to the user. num = int(input("Enter a number: ")) mod = num % 2 if mod > 0: print("This is an odd number.") else: print("This is an even number.") Output: Ente...