Maakt tempfile.
Voorbeeld:
>>> import tempfile
>>> x, y = tempfile.mkstemp()
>>> x, type(x)
(3,
>>> y, type(y)
(’/tmp/tmpK19sIx’,
>>> help(tempfile.mkstemp)
Add A Comment
You must be logged in to post a comment.
Maakt tempfile.
Voorbeeld:
>>> import tempfile
>>> x, y = tempfile.mkstemp()
>>> x, type(x)
(3,
>>> y, type(y)
(’/tmp/tmpK19sIx’,
>>> help(tempfile.mkstemp)
You must be logged in to post a comment.