Assume the file popular_names.txt contains the 400 most popular names given to children born in the United States from the year 2000 through 2009. The file contains 400 lines, with one name per line.Write a program that reads the contents of the file into a list. The program should display the following string to prompt the user to enter a name:Enter a name:The program should then display a message indicating whether the name is among the most popular. If the name is found in the list, the program should display the following message:That was a popular name between 2000 and 2009.If the name is not found in the list, the program should display the following message:That was not a popular name between 2000 and 2009.Look carefully at the following sample runs of the program. In the first sample run, the user enters a name that is found in the list. In the second sample run, the user enters a name that is not found in the list. Carefully notice the wording of the messages and the placement of spaces and colons. Your program's output must match this.Sample Run (User input shown in bold)Enter a name: IsabellaThat was a popular name between 2000 and 2009.Sample Run (User input shown in bold)Enter a name: VoldemortThat was not a popular name between 2000 and 2009.