os.tmpnam()
NA
# !/usr/bin/python3 import os, sys # Temporary file generated in current directory tmpfn = os.tmpnam() print "This is the unique path:" print tmpfn
This is the unique path: /tmp/fileUFojpd