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)
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