@@DJOamen How are U sir ? We didn’t get to have a reunion because of Covid missed U a lot sir. Also need to do my UCAS application and Go Uni this year
@@DJOamen I think I need to do a new application for this year right ? I finished it last year but now it’s saying that I am not registered so idk I think I need to start it again😞
Check 35:25 minute into the tutorial. Is meant to be a function definition. Watch the video tutorial carefully. See correction below def valid_function(self): if self.op == "add"
You must create a function called display. See the function below. Good luck def display(self,value): entDisplay.delete(0, END) entDisplay.insert(0, value)
Very nice
Great ful to me
Tysm
Amazing work. Wish you a great success.. keep mentoring.
Thank you! You too!
osm bro but can u teach me on online ( zoom)classes pls request
You can still learn from the video tutorial, because, that will cost you a lot of money.
sir what is the app which you are using to view the code?
Please tell
Is called Visual Studio Code
code.visualstudio.com/
Subscribe to the channel. Thanks
@@DJOamen sir from where you are viewing the output as when I am running it then chrome is opening and showing that this site can't be reached
Congrats on 100k Subs!! well done
Thank you so much 😀
Amazing work
Thank you! Cheers!
King of Kingzzzxx
Yman, what's up. Along time
@@DJOamen How are U sir ? We didn’t get to have a reunion because of Covid missed U a lot sir. Also need to do my UCAS application and Go Uni this year
Yes, the lock down, due to covid. Well is good to know that you are going to university now, and why is the UCAS form taken that long?
@@DJOamen I think I need to do a new application for this year right ? I finished it last year but now it’s saying that I am not registered so idk I think I need to start it again😞
Okay, go for it, before is too late. Good luck
Having a problem with the __init___(self) function, any fixes?
Idowu, carefully watch the video tutorial
bro help me out plzzzzz AttributeError: 'Calculator' object has no attribute 'valid_function
Check 35:25 minute into the tutorial. Is meant to be a function definition. Watch the video tutorial carefully. See correction below
def valid_function(self):
if self.op == "add"
Sir, Please Create Video Tutorial "Hotel Management System with Hotel Room Status" in ms access.
🤞
AttributeError: 'Calculator' object has no attribute 'check_sum'
Check 18 minutes into the video tutorial. It's meant to be: self.check_sum
Always check your code
Add,sub,multi,division buttons are bot working properly 😢
Careflly watch the video tutorial
sir there is AttributeError: 'Calculator' object has no attribute 'cos' pls help me
There is no attribute 'cos' in my video tutorial, check your code
my computer failed to the runing part
Check you code
Can you please put the entire code in the description or reply to me with it?
Check description
@@DJOamen thank you!
AttributionError: 'Calculator' object has no attribute 'display'
You must create a function called display. See the function below. Good luck
def display(self,value):
entDisplay.delete(0, END)
entDisplay.insert(0, value)
I want to learn Python
Very good move. You can check out all my Python tutorial, click on the playlist.
"entDisplay" is not defined
Create an Entry widget and name it entDisplay
'Calculator' object has no attribute 'BackSpace'
The widget is call:
btnBackSpace = Button(MainFrame, width=6, height=2, font=('arial', 16, 'bold'), bd=4, text="",bg='cadet blue',
command =added_value.backspace)
btnBackSpace.grid(row=1, column=0, pady=1)
OR
the function as shown below:
def backspace(self):
numLen = len(entDisplay.get())
entDisplay.delete(numLen - 1, 'end')
if numLen == 1:
entDisplay.insert(0, "0")
32.06 indentation error
Check your indentation
sir how can i fix this? "AttributeError: '_tkinter.tkapp' object has no attribute 'miniloop'"
What is 'miniloop'"?
See the correct syntax below
root.mainloop()