Delete a CTk label #2117
Unanswered
Prajwal201011
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So I have been trying to delete a CTk Label using .delete function but it doesn't work
does anyone know how to do it
`
def cal():
princip = int(p.get())
Term = int(t.get())
Rate = int(r.get())
amt = (principTermRate)/100
amtl = CTkLabel(interest, text=f"Amount is: {amt}")
amtl.pack(pady= 15)
Beta Was this translation helpful? Give feedback.
All reactions