Last answered:

08 Oct 2020

Posted on:

13 May 2020

0

Python Bootcamp- Section 8 Files and Functions

Hello,   I cannot access the "file explorer" or variable explorer shown in file section: f = open('kipling.txt','w') How do I access the file and variable explorer in Spyder?
1 answers ( 0 marked as helpful)
Instructor
Posted on:

08 Oct 2020

0
Hi Matt, Could you please try 'reading' the file (instead of 'writing'), signified by the letter 'r' in the syntax.
f = open(‘kipling.txt’,’r’)
Let us know if it worked. Best, The 365 Team

Submit an answer