Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
437 views
in Technique[技术] by (71.8m points)

python - 关于更新全局变量(python)(about an updating a global variable (python))

x=1
CustomerRef.set(x)

def printBill():
            global x
            filename = tempfile.mktemp (".txt")
            open (filename, "w").write(self.txtReceipt.get('1.0',END))
            open("Bills/"+str(CustomerRef .get()+".txt"),"w").write(self.txtReceipt.get('1.0',END))
            os.startfile(filename,"print")
            x+=1
            CustomerRef.set(x)

This def for the print button is using a billing system.

(打印按钮的此定义正在使用计费系统。)

I want to set the CustomerRefnmber 0 to update as 1 (like first user bill, second user bill like that)and next when the user press the print button that value should have become to 2.

(我想将CustomerRefnmber 0设置为1更新(例如第一个用户帐单,第二个用户帐单),然后在用户按下打印按钮时将值更新为2。)

There is an error in x+=1 line;

(x + = 1行中有错误;)

the error message is: name 'x' is not defined

(错误消息是:未定义名称“ x”)

  ask by kanishka kumarasiri translate from so

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

1 Reply

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...