ff = open("../dirname/filename","r") doesn't work. It says the file is not found. This works fine in Python on my local machine
ff = open("../dirname/filename","r") doesn't work. It says the file is not found. This works fine in Python on my local machine
Check if the path is correct -- you're using a relative path, make sure that the code is executed where you think it is executed.