Advertisement
Guest User

diary

a guest
Jul 14th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. def click():
  2.     note_name = str(input('Введите имя новой заметки \n'))
  3.     root = Tk()
  4.     button_newnote = Button(root, bg='grey',text='New note', command=newnote(note_name))
  5.     button_newnote.pack()
  6.     root.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement