Commit 315d9be9 by BellCodeEditor

auto save

parent 14be9d75
Showing with 16 additions and 4 deletions
n=100
s=
for i in range(101):
if n%3=0:
print()
for i in range(101):
if n%5=0:
print()
for i in range(101):
if n%15=0:
print()
\ No newline at end of file
......@@ -39,7 +39,7 @@ class Note(): # 便签、笔记
self.select = tkinter.Radiobutton(self.canvas,image=self.box,value=self.val,variable=self.v,width=25,height = 15,borderwidth=0,command=self.remove)
self.select.place(x=-20,y=self.y-10)
self.val +=1
self.y += 30
self.y =self.y+30
def remove(self):
num = self.v.get()
......@@ -54,10 +54,10 @@ class Note(): # 便签、笔记
alist.append(info)
self.canvas.create_text(40,self.y,text=info,font=("宋体",11),
anchor=W, fill='#FF9900')
self.select = tkinter.Radiobutton(self,Canvas,image=self.box,value=self.val,variable=self.v,width=25,height = 15,borderwidth=0,command=self.remove)
self.select = tkinter.Radiobutton(self.canvas,image=self.box,value=self.val,variable=self.v,width=25,height = 15,borderwidth=0,command=self.remove)
self.select.place(x=-20,y=self.y-10)
select.val +=1
self.y += 30
self.val +=1
self.y =self.y+30
app = Note()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment