You are going to open a file in your program to use what is already in the file.
The program is saved in a folder, which has a subfolder called "dataFiles."
In the textFiles folder is a text file called "games.txt."
Which line of code will open games.txt?
fileIn = open("dataFiles/games.txt","r")
fileIn = open("dataFiles/games.txt","r")
fileIn.open("games.txt","r")
fileIn.open("games.txt","r")
fileIn = open("games.txt","r")
fileIn = open("games.txt","r")
fileIn.open("dataFiles/games.txt","r")