In the docs of open() build in function of python,the meaning of "+" is as follows:
open a disk file for updating(reading and writing)
but when i use the open() build-in to create a new file with python 3.5 in win7,i got the "FileNotFoundError".
tmp_file=open(str(temp_path),'r+')
as the explanation of open() in doc,should't it create a new empty file if the file specifiled is not exist?when use the "r+" mode?