Can someone help me with my code?
Write a program that reads the contents of the two files into two separate lists. The program displays a menu of two options: first option allows the user to enter a letter and the program should prints lists of girls and boys names that begin with that letter. Second option: allows the user to enter a length of a name and the program should prints lists of girls and boys names that have the same length. girlNamesfile = open("GirlNames.txt", "r") girlNamesList = [] girlNames = girlNamesfile.readline() while girlNames != "": girlNamesList.append(girlNames) girlNames = girlNamesfile.readline() print(girlNamesList) boyNamesfile = open("BoyNames.txt", "r") boyNamesList = [] boyNames = boyNamesfile.readline() while boyNames != "": boyNamesList.append(boyNames) boyNames = boyNamesfile.readline() print(boyNamesList)