96.6k views
0 votes
Your program analyzes complex data.

To share your results, you are going to write text to a file in your program.
The program is saved in a folder, which has a subfolder called "info."
In the info folder is a text file called "bikes.txt."
Which line of code will open bikes.txt?

User Malia
by
4.5k points

1 Answer

8 votes

Answer:

python:

f = open("\info\bikes.txt", "r")

print(f.read())

Step-by-step explanation:

User Amr Ramadan
by
4.3k points