this python string:
f=open('/tmp/workfile', 'w')
my tutorial says that this string contains a file name. Well, where is the file name?. File names have extensions like .exe or .txt.
workfile does not have an extension so even if it was a file there could be more than one workfile. Like a workfile.txt and a workfile.exe...
workfile could also be a directory..I'm confused. also what is /temp?
f=open('/tmp/workfile', 'w')
my tutorial says that this string contains a file name. Well, where is the file name?. File names have extensions like .exe or .txt.
workfile does not have an extension so even if it was a file there could be more than one workfile. Like a workfile.txt and a workfile.exe...
workfile could also be a directory..I'm confused. also what is /temp?
Comment