Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

import tempfile
import os 

q=tempfile.mktemp(".txt")
open(q,"w").write("the writing")
os.startfile(q,"print")

while running this code there is an output from the printer as [ "the writing" ] (it's ok) and there is also a text called := " tempsh03uiuc.txt " at the top of the paper.

(在运行此代码时,打印机的输出为[“文字”](可以),并且在纸张顶部还有一个名为:=“ tempsh03uiuc.txt”的文本。)

help me to solve this, " tempsh03uiuc.txt " is an irrelevant thing.

(帮我解决这个问题,“ tempsh03uiuc.txt”是无关紧要的事情。)

  ask by kanishka kumarasiri translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
165 views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...