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