1 | initial version |
Just in case nothing wants to work, here is a way to get closer to the solution:
import os.path
with open(os.path.join('C:\\', 'Users', 'tahah', 'Desktop', 'hihi.txt') as f:
print(f.read())
2 | No.2 Revision |
Just in case nothing wants to work, here is a way to get closer to the solution:
import os.path
with open(os.path.join('C:\\', 'Users', 'tahah', 'Desktop', 'hihi.txt') 'hihi.txt')) as f:
print(f.read())