I\'m running code under Enthought Canopy to open and read a file. It keeps telling me IOError.
But I am pretty sure the text file name is right and it is in the same
It is also possible to open a txt file when giving a complete path in parentheses, to change all \ with /
\
/
from:
text=open('C:\Users\Korisnik\Desktop\abeceda.txt')
to:
text=open('C:/Users/Korisnik/Desktop/abeceda.txt')