Python os.tmpnam() 方法
Python 教程
· 2019-02-04 13:11:36
概述
os.tmpnam() 方法用于为创建一个临时文件返回一个唯一的路径。
语法
tmpnam()方法语法格式如下:
os.tmpnam
参数
无
返回值
返回一个唯一的路径。
实例
以下实例演示了 tmpnam() 方法的使用:
#!/usr/bin/python # -*- coding: UTF-8 -*- import os, sys # 生成临时路径 tmpfn = os.tmpnam() print "这是一个唯一的路径:" print tmpfn
执行以上程序输出结果为:
这是一个唯一的路径: /tmp/fileUFojpd
点击查看所有 Python 教程 文章: https://www.codercto.com/courses/l/8.html
Coming of Age in Second Life
Tom Boellstorff / Princeton University Press / 2008-04-21 / USD 29.95
The gap between the virtual and the physical, and its effect on the ideas of personhood and relationships, is the most interesting aspect of Boellstorff's analysis... Boellstorff's portrayal of a virt......一起来看看 《Coming of Age in Second Life》 这本书的介绍吧!