# for those who's finding the real code # 70 entry box from tkinter import * def submit(): username = entry.get() print("Hello "+username) def delete(): entry.delete(0,END) def backspace(): entry.delete(len(entry.get())-1, END) window = Tk() entry = Entry(window, font=("Arial",50), fg="#00FF00", bg="black") #entry.insert(0,'Spongebob') #entry.config(show="*") #entry.config(state=DISABLED) entry.pack(side=LEFT) submit_button = Button(window,text="submit",command=submit) submit_button.pack(side=RIGHT) delete_button = Button(window,text="delete",command=delete) delete_button.pack(side=RIGHT) backspace_button = Button(window,text="backspace",command=backspace) backspace_button.pack(side=RIGHT) window.mainloop() # here :)
@CARIOCAJJ3613 күн бұрын
Excelente aula professor
@PUR3lCHA0S2 жыл бұрын
# For people trying to get this to work in the future use ."get" to get the contents of entry and the len() function to find the length of the string def delete(): str_length = len(entry.get()) entry.delete(0, str_length) # backspace is pretty much the same def backspace(): str_length = len(entry.get()) entry.delete(str_length-1)
@lw99542 жыл бұрын
Sorry for not watching videos yesterday bro. Continuing the grind today.
@liudmilarodzina80842 жыл бұрын
"Hello ergergergergergerg" 🤣 Bro, thank you for the great beginning of my day
@plastic-_-bag18262 жыл бұрын
very nice videos keep doing them bro
@uuhju70043 жыл бұрын
good video
@kristijanlazarev10 ай бұрын
cooool
@truquichan Жыл бұрын
Great!
@jhassee2 жыл бұрын
groovy
@Amir_Plays_non_stop3 жыл бұрын
Hahahahahahahaha the 3:23 🤣🤣🤣🤣🤣🤣
@rubenc46967 ай бұрын
Thanks
@arkamukhopadhyay21773 жыл бұрын
does .delete() take negative indexes like -1? if it takes, does .delete(-2,-1) have the same effect of the backspace?
@onlyLewds2 жыл бұрын
wondering this as well! if anyone has a answer please do share
@EissaAlahdul2 жыл бұрын
شكرا
@michael3k802 жыл бұрын
great staff. Was wondering if function delete and others can be made to be more universal so any entry connected to it would work properly...
@VenkiTotad2 жыл бұрын
3:24 😂yes
@creator671410 ай бұрын
This is *****! oops, left 'show="*"' on This is great! Thank you!
@philtoa3343 жыл бұрын
3:23 😂
@captain_ali_012 жыл бұрын
I created multiple entry boxes but the backspace and delete keys affect all the boxes simultaneously.. How do I prevent? I want only the active box to be affected. Help.
@beingzero75412 жыл бұрын
Wow!
@vdafs14 жыл бұрын
Hi dude, how I can change the color to a disabled entry box?
@BroCodez4 жыл бұрын
disabledbackground="grey"
@vdafs14 жыл бұрын
Bro Code thanks bro ur number1
@SuperStarEevee2 жыл бұрын
Thank you!
@arshamcfr32362 жыл бұрын
amazing video but the code you commented is for the next video not this one
@omairtech6711 Жыл бұрын
My font never changes. I specified it to Arial.
@alphad94742 жыл бұрын
loved it!
@anonymoushelp97407 ай бұрын
how to get int or float input from user?
@Adamelamine2 жыл бұрын
drop a comment down delow
@piotrkopcewicz52272 жыл бұрын
perfecto !!!
@thrasherbassboy3 жыл бұрын
thank you ergergegrgeregr, you're ergsome!
@MrEicke012 жыл бұрын
Video 69/100 nice
@scpf23602 жыл бұрын
Window = Tk() does Not Work
@laopichthyrith92 жыл бұрын
What python version did you use
@scpf2360 Жыл бұрын
@@laopichthyrith9 Sorry I'm Just Dumb I Figured It Out. It Wasn't Working Because I Did Not Install Tkinter😂