I want create a file.My file name like this ->"blabla/blabla" this is not path ,this is a string
and should be "blabla/blabla.txt"
with open(fullnameofjob+".txt", "w+") as f:
f.write("somethink")
FileNotFoundError: [Errno 2] No such file or directory:'blabla/blabla'
How can I fix that? like this: