Write a program that generates N(user input) lists of strings. For each list, find the length of the longest string, the position of the longest string and the longest string itself using the function you wrote.
Write a function def fchange_list(string_list) that accepts one parameter - list of strings. The function converts each string to Pig Latin using function you wrote above and creates and returns a new list of Pig Latin strings. For example, if the original list was ["yana", "guy", "I"] Then the Pig Latin list will be: ["ayanay", "yguay", "Iay"]
Write main to test your functions