How to delete the button in tkinter if it got click then play the function example this is the code
from tkinter import *
s = Tk()
#example this the game
def game():
pass
#if this button got click this button should be gone and play the game
b = Button(s,text="play",command=game)
b.grid(row=1)
s.mainloop()