Python method tmpnam() returns a unique path name that is reasonable for creating a temporary file.
Following is the syntax for tmpnam() method:
os.tmpnam()
This method returns a unique pathname.
The following example shows the usage of tmpnam() method.
# !/usr/bin/python import os, sys # Temporary file generated in current directory tmpfn = os.tmpnam() print "This is the unique path:" print tmpfn
When we run the above program, it produces the following result:
This is the unique path: /tmp/fileUFojpd
Here at Intellinuts, we have created a complete Python tutorial for Beginners to get started in Python.