Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def click():
- note_name = str(input('Введите имя новой заметки \n'))
- root = Tk()
- button_newnote = Button(root, bg='grey',text='New note', command=newnote(note_name))
- button_newnote.pack()
- root.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement