Treeview PART - 2 in Tkinter
18:20
Treeview PART - 1
18:48
2 ай бұрын
M_14 : HISTOGRAMS in MATPLOTLIB
9:48
M_12 : SCATTER  PLOT in Matplotlib
13:41
M_8:  BAR  PLOT  in  Matplotlib
12:42
5 ай бұрын
M_6: fontsize in Matplotlib
6:40
7 ай бұрын
M_5:  legend() in Matplotlib
12:58
8 ай бұрын
BUBBLE SORT in 3 minutes
3:04
8 ай бұрын
LOGIN Page in Tkinter
7:29
8 ай бұрын
M_1:  Matplotlib Overview
11:58
9 ай бұрын
TOGGLE BUTTON in Tkinter
21:13
10 ай бұрын
Пікірлер
@ccx22
@ccx22 Күн бұрын
fully understood, thanks mam, and yess subscribed
@nagasarithakp
@nagasarithakp Күн бұрын
@@ccx22 glad to know you liked the video. Thanks for subscribing.
@shaikhussain888
@shaikhussain888 2 ай бұрын
very useful
@nagasarithakp
@nagasarithakp 2 ай бұрын
Thank u very much.
@shaikhussain888
@shaikhussain888 2 ай бұрын
Hi madam do you linkiden profie? If you have it pleas share ?
@nagasarithakp
@nagasarithakp 2 ай бұрын
Why do you need?
@Lakshmanan-og2ws
@Lakshmanan-og2ws 3 ай бұрын
Thank you mam...superb concept.
@nagasarithakp
@nagasarithakp 3 ай бұрын
Thanks for liking, plz watch the other parts to get the complete understanding.😊
@shaikhussain888
@shaikhussain888 3 ай бұрын
great lecture
@nagasarithakp
@nagasarithakp 3 ай бұрын
Glad you liked it
@shaikhussain888
@shaikhussain888 3 ай бұрын
great teaching skills you have
@nagasarithakp
@nagasarithakp 3 ай бұрын
Thank you🙏🏻
@shaikhussain888
@shaikhussain888 3 ай бұрын
great explanation
@nagasarithakp
@nagasarithakp 3 ай бұрын
Glad you liked it
@مسافر-ح2ط
@مسافر-ح2ط 7 ай бұрын
Datacamp ❌ Mrs. Nagasaritha KP ✅ I swea if I ever get rich, or even just in a better financial state, I'm gonna find you and pay you back. Till then I'm gonna keep you in my prayer, and share your channel.
@mushtaqahmed-my9vy
@mushtaqahmed-my9vy 8 ай бұрын
Excellent explanation
@nagasarithakp
@nagasarithakp 8 ай бұрын
Thankyou
@Mani-wr4ss
@Mani-wr4ss 8 ай бұрын
Wonderful lecture Mam... Your way of teaching is excellent, Mam👌👏
@nagasarithakp
@nagasarithakp 8 ай бұрын
Thankyou.
@jam_over_jelly
@jam_over_jelly 8 ай бұрын
10/10
@nagasarithakp
@nagasarithakp 8 ай бұрын
Thankyou
@varunsethi7429
@varunsethi7429 8 ай бұрын
Best explanation of this concept found in KZbin, Thanks Mam
@nagasarithakp
@nagasarithakp 8 ай бұрын
You are welcome.
@babatundeakinbo2522
@babatundeakinbo2522 8 ай бұрын
This is Crystal clear. Thanks for this video. Now I have no problem again on python arrays. Great work
@nagasarithakp
@nagasarithakp 8 ай бұрын
You are welcome.
@youcefyahiaoui1465
@youcefyahiaoui1465 8 ай бұрын
Nice. I think I enjoyed more your few tkinter pointers than the filedialog.askdirectory method. Would you be able to do a tutorial on designing a GUI (Quick and efficient way) with buttons, select menues, plotting etc using tkinter or Qt5? Which one is your preferred GUI method?
@mosama22
@mosama22 9 ай бұрын
Thank you for the beautiful video 🙂
@nagasarithakp
@nagasarithakp 9 ай бұрын
Glad to know you liked it.
@Ngongang-bp1nc
@Ngongang-bp1nc 10 ай бұрын
Thanks a lot 🤩🤩
@nagasarithakp
@nagasarithakp 10 ай бұрын
You are welcome .
@stellarspacetraveler
@stellarspacetraveler 11 ай бұрын
Thank you dear. May the Lord Jesus give you his love.
@nagasarithakp
@nagasarithakp 11 ай бұрын
Thanks for your wishes!!!
@fieryelf
@fieryelf 11 ай бұрын
Thank you, I've been trying to do this but was slightly off with the way I was doing things.
@nagasarithakp
@nagasarithakp 11 ай бұрын
Glad to know, it was useful for you. Thankyou.
@bgm8719
@bgm8719 Жыл бұрын
Hi mam..i would like to thank you so much..The way u explain is just awesome..i refer ur vedios.. mam can u plz share study materials if possible..
@nagasarithakp
@nagasarithakp Жыл бұрын
Thank you, Study materials of what topic you want?
@spike666spike666
@spike666spike666 Жыл бұрын
Thanks , but for some reason I get a blank text file. my list box contains special characters and numbers. I can't seem to figure out what I am doing wrong.... def SaveFile(): try: sf = filedialog.asksaveasfile(filetypes=[ ("Text file", "*.txt"), ("HTML file", ".html"), ("All files", ".*")], defaultextension=".txt", mode='w') sf=u'\u003c', sf.encode('utf-8') if sf is not None: return sf.write(' '.join(listbox2.get(0, 'end'))) except Exception as e: print("An error occurred:", e) sf.close() button2 = Button(button_frame, bg="Cyan", fg="Blue", activebackground="Cyan", activeforeground="Blue", text="Save Scraped", command=SaveFile) button2.grid(row=0, column=4, padx=5) This works fine, but I want to save the file as whatever title... with open("list.txt", "w", encoding="utf-8") as file: file.write(' '.join(listbox2.get(0, END))) I think I'm getting the error because Im overwriting sf by trying to encode using this. sf=u'\u003c', sf.encode('utf-8')
@spike666spike666
@spike666spike666 Жыл бұрын
If I don't use if sf is not None: return I get the following error just like before: An error occurred: 'str' object has no attribute 'write'
@nagasarithakp
@nagasarithakp Жыл бұрын
Hi, Please see my solution, instead of asksaveasfile() please use asksaveasfilename() method.You can select the file of your choice. The solution has been given below: def SaveFile(): file_1=filedialog.asksaveasfilename( filetypes=[('text file','*.txt'),('csv file','*.csv')], defaultextension=".txt") fp=open(file_1, 'w' ,encoding='utf-8') fp.write(' '.join(listbox2.get(0, END))) fp.close()
@spike666spike666
@spike666spike666 Жыл бұрын
@@nagasarithakp Thank you so much! I feel stupid haha all it was is I was overwriting "sf" and I had to use the "asksaveasfilename" instead of "asksaveasfile". Again thank for taking the time to help me out!
@spike666spike666
@spike666spike666 Жыл бұрын
Nice tutorial video. How do you add encoding="utf-8" or enc='utf-8' within this code?
@nagasarithakp
@nagasarithakp Жыл бұрын
Hi, You can include the unicode data within the proverb variable.Then give proverb.encode('utf8') , the details will be written into the file. For ex in the below example I am giving proverb= u'\u003c' and it is written as < in the file. ********************************************************** proverb=u'\u003c' proverb.encode('utf8') fp=open(file,'w') fp.write(proverb) fp.close()
@spike666spike666
@spike666spike666 Жыл бұрын
@@nagasarithakp Thanks, but what if I use a listbox instead of proverb=
@spike666spike666
@spike666spike666 Жыл бұрын
@@nagasarithakp def SaveFile(): sf = filedialog.asksaveasfile(defaultextension=".txt", mode='w', filetypes=[ ("Text file", ".txt"), ("HTML file", ".html"), ("All files", ".*"), ]) sf=u'\u003c' sf.encode('utf8') if sf is None: return print(" ".join(listbox2.get(0,END))) Saves a blank TXT file. Any idea why?
@nagasarithakp
@nagasarithakp Жыл бұрын
Hi, The file is empty because you are not writing anything to the file. Try writing into the file, with file pointer.write.
@spike666spike666
@spike666spike666 Жыл бұрын
@@nagasarithakp file pointer? plz explain.
@piyushgupta2667
@piyushgupta2667 Жыл бұрын
Man what if we have a question like x=([[[1,2,3,4]]]) , a 3d array find x[1,1:,3]
@nagasarithakp
@nagasarithakp Жыл бұрын
Hi, a 3d array is an array of 2dimensional arrays, but x looks like a 1 dimensional array so it cannot be considered as a 3 dimensional array.
@vumahyndavi88
@vumahyndavi88 Жыл бұрын
Here i = 0, j = 0,k = 0,1,2,3 so x[1,1:,3] throws error. You can try x[0,0,3]
@jiaali6565
@jiaali6565 Жыл бұрын
Thank you for making this! <3
@nagasarithakp
@nagasarithakp Жыл бұрын
Glad to know you liked it .
@peszilla9030
@peszilla9030 Жыл бұрын
Good explanation ❤️❤️
@nagasarithakp
@nagasarithakp Жыл бұрын
Thank you 🙂
@bashiratadewole5808
@bashiratadewole5808 Жыл бұрын
Thanks you for well explanation
@nagasarithakp
@nagasarithakp Жыл бұрын
You are welcome
@sultanahabdullatif4730
@sultanahabdullatif4730 Жыл бұрын
Thank you 🩷🩷🩷
@nagasarithakp
@nagasarithakp Жыл бұрын
Welcome
@rutenowynidoking3593
@rutenowynidoking3593 Жыл бұрын
Instead of 'text.set("")', wouldn't it be better to write 'entry1,delete(0, END)'?
@nagasarithakp
@nagasarithakp Жыл бұрын
Yes ,writing entry1.delete(0,END) will be a better way of coding. Thankyou for spoting.
@justhasim7425
@justhasim7425 Жыл бұрын
best explanation i every seen , thank you mam
@nagasarithakp
@nagasarithakp Жыл бұрын
Most welcome 😊
@gameslover5083
@gameslover5083 Жыл бұрын
Thank you mam For these Lectures 🥰🥰 These are very practical 😍🥰🥰 Love your content 🥰
@nagasarithakp
@nagasarithakp Жыл бұрын
Thanks a lot 😊
@gameslover5083
@gameslover5083 Жыл бұрын
❤❤❤
@gameslover5083
@gameslover5083 Жыл бұрын
Ap ki lecture kafi practical hy mn ny Bohat kuch sekha thank you mam 😍😍🥰🥰❤
@gameslover5083
@gameslover5083 Жыл бұрын
Nice work mam Love your content 🙂🙂🥰
@nagasarithakp
@nagasarithakp Жыл бұрын
Thanks a lot 😊
@gameslover5083
@gameslover5083 Жыл бұрын
Great work mam ❤❤
@nagasarithakp
@nagasarithakp Жыл бұрын
Thankyou, hope it was helpful for you.
@gameslover5083
@gameslover5083 Жыл бұрын
🙂🙂🙂🥰
@gameslover5083
@gameslover5083 Жыл бұрын
Mam nice ❤❤❤
@nagasarithakp
@nagasarithakp Жыл бұрын
Thankyou.
@evilytlive
@evilytlive Жыл бұрын
Thank mam❤ you clear my doubt❤
@nagasarithakp
@nagasarithakp Жыл бұрын
Glad to hear that
@nagasarithakp
@nagasarithakp Жыл бұрын
You can see my other videos in Numpy playlist. It might be helpful.
@dspavan7982
@dspavan7982 Жыл бұрын
Thank you Ma'am , it was a crystal clear explaination..
@nagasarithakp
@nagasarithakp Жыл бұрын
Glad it was helpful!
@dspavan7982
@dspavan7982 Жыл бұрын
Thanks Ma'am , Topic taught was Crystal Clear
@nagasarithakp
@nagasarithakp Жыл бұрын
Thankyou
@nagasarithakp
@nagasarithakp Жыл бұрын
You can also refer my practical sessions in 'Python for beginners - Practical' playlist.
@SanjayNambiarFilmCamp
@SanjayNambiarFilmCamp Жыл бұрын
Thank you madam. Your explanation is very comprehensive and the best I've seen. I like your usage different colored markers. They truly help in explain the indexing. Thank you. _/\_
@nagasarithakp
@nagasarithakp Жыл бұрын
Thank you so much 🙂
@shaikmaaheed5629
@shaikmaaheed5629 Жыл бұрын
Can you make a playlist on pcpp certification syllabus ?
@nagasarithakp
@nagasarithakp Жыл бұрын
Noted, will try.
@AbuSalehsalehju
@AbuSalehsalehju Жыл бұрын
very good for fresh user of numpy
@nagasarithakp
@nagasarithakp Жыл бұрын
Glad to know it's helpful to you. You can have a look at my other playlists on different topics like Pandas, Python, regex, decorators, oops concepts etc
@nagasarithakp
@nagasarithakp Жыл бұрын
Glad to know it's helpful to you. You can have a look at my other playlists on different topics like Pandas, Python, regex, decorators, oops concepts etc
@AbuSalehsalehju
@AbuSalehsalehju Жыл бұрын
good resource to learn lumpy
@nagasarithakp
@nagasarithakp Жыл бұрын
Glad to know it's helpful to you. You can also refer to my other playlists on pandas, python, regex, decorators, oops and etc.
@AbuSalehsalehju
@AbuSalehsalehju Жыл бұрын
Very easy to understand. Pls carry on
@nagasarithakp
@nagasarithakp Жыл бұрын
Thank you very much.
@nagasarithakp
@nagasarithakp Жыл бұрын
Glad to know the video was useful to you. Also plz refer these videos to your friends so that even they get benefitted by subscribing to my channel as I keep adding new videos.
@صبريعوضبامطرفالكندي
@صبريعوضبامطرفالكندي Жыл бұрын
wonderful 👍 ... thank you for your time
@nagasarithakp
@nagasarithakp Жыл бұрын
Glad to know you liked it.
@arshathessa5688
@arshathessa5688 Жыл бұрын
Thank you for this Video madam! I've watched many videos related to this topic, but None of them made sense, when I watched your video I'm satisfied, Keep making Videos:)
@nagasarithakp
@nagasarithakp Жыл бұрын
Glad to know that you liked the video. As of now I am making videos on Tkinter, plz keep watching .
@anoopkumar7897
@anoopkumar7897 Жыл бұрын
This is the best explanation on the whole of internet...thank u so much❤️😊
@nagasarithakp
@nagasarithakp Жыл бұрын
Thankyou very much.
@Randomchalchitra
@Randomchalchitra 2 жыл бұрын
amazing..
@nagasarithakp
@nagasarithakp 2 жыл бұрын
Thank you.
@rithishkonduri508
@rithishkonduri508 2 жыл бұрын
Nice explanation..
@nagasarithakp
@nagasarithakp 2 жыл бұрын
Glad to know, you liked it.
@howtobuildalegoaeroplaneag3904
@howtobuildalegoaeroplaneag3904 2 жыл бұрын
Great
@nagasarithakp
@nagasarithakp 2 жыл бұрын
Thank you