I never seen such a nice tutor like you. Keep it up Sir. You are more valuable
@bhanumudhiraj33863 жыл бұрын
@Riyanshi's vlogs you can share the link dhidi😄
@addiszenadaily5 жыл бұрын
am watching all add not skipping one of the best tutorial on KZbin
@pardhualapati49814 жыл бұрын
Telusukoo..
@josaphcj71993 жыл бұрын
Mee 2
@beyondlimits3843 жыл бұрын
Meetoo
@soumelee56613 жыл бұрын
@Skylar James scam :O
@ayushalhat12383 жыл бұрын
@Skylar James to anyone reading this plz do not try it as it is a scam which has already trapped many people...they propogate through youtube comment section only ...no doubt *its a scam*
@blenderhander94854 жыл бұрын
I am a mechanical engineer and i wanted to learn python and then i found you thanks a lot man!!
@mohammedjishadkp9164 жыл бұрын
Me too
@vardhaneswar6074 жыл бұрын
I'm also...
@adityaprakash82174 жыл бұрын
Which college?
@blenderhander94854 жыл бұрын
@@adityaprakash8217 LIET Alwar Rajasthan
@adityaprakash82174 жыл бұрын
@@blenderhander9485 Ohh ok
@abhishekkumarav88685 жыл бұрын
Do you know why we love to learn python under ur guidance?? Coz u bother about beginners 🙏❤️
@virgo42504 жыл бұрын
yes ofcourse
@adityaprakash82174 жыл бұрын
Yes true
@satyamaruthi11453 жыл бұрын
even his assent is also more favourable to beginners and it creates interest to the listeners
@BarredTitan3 жыл бұрын
Ye
@heh23933 жыл бұрын
@@satyamaruthi1145 His voice has a lot of enthusiasm.
@ABCALFANZO40443 жыл бұрын
We need professors like you in colleges and then studying becomes interesting and enjoyable. Doing great job.
@vinodkumar-qw3hv2 жыл бұрын
madda gudu adidi
@afuneralinwhite2 жыл бұрын
i finally got to start watching the videos you've made. made it through #1-#6 tonight. absolutely blown away by how helpful these have been. I started my course on intermediate python this semester and am already being tasked with figuring out recursion. I can't wait to see how these videos will help me!
@NikSy4 жыл бұрын
Thank you Naveen for this great tutorial I would like to add some more point about sets 1) To create an empty set use >>s1 =set() because if you use >> s1 = { } and check >> type(s1) you will get , which means it is treated as an dictionary instead of empty set.
@ankitha85304 жыл бұрын
>>s1=set() its also showing error yaaar
@manojkumarn90274 жыл бұрын
@@ankitha8530 we can create set using{ }
@adarshsahani19473 жыл бұрын
Thanks
@telugustatus42413 жыл бұрын
Both are working
@ashokjoshi50133 жыл бұрын
@Telusko There is a workaround for changing Tuple value, We can convert the tuple into a list, change the list, and convert the list back into a tuple. name = ('Ashok','Kiran','John','Steve') changedname = list(name) changedname[1] = 'Rahul' name = tuple(changedname) print(name) Now the name tuple will have the values changed. Output : ----------- ('Ashok', 'Rahul', 'John', 'Steve') Kindly give a heart if this comment was helpful.
@sakshidherange75543 жыл бұрын
ya , It's helpful I also wanted to say same thing ...
@ashokjoshi50133 жыл бұрын
@@sakshidherange7554 Welcome 😊
@NikSy4 жыл бұрын
2) If you use a set inside a set which will lead to an error eg: set_2 = {1,2,3,"hello",{4,5,6}} print(set_2) It will print TypeError: unhashable type: 'set' so instead of that use set_2 = {1,2,3,"hello",(4,5,6)} print(set_2) will print {1, 2, 3, 'hello', (4, 5, 6)}
@sureshkumarp18694 жыл бұрын
Thank you
@pradeeps41032 жыл бұрын
where is the question?! time please
@jagritimahata3042 Жыл бұрын
can u tell me the difference between index and count? I started learning python today so I dont know it
@prathikbhat Жыл бұрын
@@jagritimahata3042 Indexing is position of the number while count is total number of elements
@Fitness777994 жыл бұрын
my man deserves a billion subscribers i swear great videos man!!
@pratibha19764 жыл бұрын
watched a few videos this evening and followed along! very fun, easy, and it can be fast paced at times but that is the advantage of online learning. I can go at my own pace :) Your channel is a great source! Thank you.
@Anonymous404124 жыл бұрын
Navin sir I must say No human No youtuber No website make me understands like you And the you are the one who bother about beginners and I will make sure that you will have a million subscribers in just few months❤🔥💥
@oomaithamizhan31474 жыл бұрын
Now he got..
@educationgames65123 жыл бұрын
1.35M now
@maven5585 жыл бұрын
Thank you Navin Reddy for making Python series.
@jaunelia3544 жыл бұрын
I've seen many tutorials on python but this one is best especially because the teacher is kind enough to care about beginner, thank you so much,❤️❤️
@utkalaandhramedia29074 жыл бұрын
Sri garu Meeru super Andi because mee valla ma abbai Python nerchagalugutunnadu hats off to our service sir garu🙌🙌🙌
@simplytan4 жыл бұрын
I came to watch this playlist bcz my friend gave me a challenge to end the first 10 eps in one day. But now I'm excited to learn all these. Thank u for teaching us in an easy and quick way
@poojajain49004 жыл бұрын
The answer to the quiz question.. >>>Del nums [2:5] >>>Nums [25,36,26]
@aditsharma2794 жыл бұрын
A new thing I learnt today
@poojajain49004 жыл бұрын
@S u m a n t h yes u can pop a number from list.. Eg. >>>Nums = [ 45 , 56 , 67 , 90 ] >>> Nums.pop(1) 56
@gautamsrivastav83304 жыл бұрын
Why couldn’t we use nums.remove(2:5)
@poojajain49004 жыл бұрын
@@gautamsrivastav8330 if you use that syntax.. it will give you a syntax error.. thats because remove parameter takes only argument.. which means if you use remove you can only remove one number at a time from list.. and also you are supposed to mention the number you want to remove inside the bracket... Eg. >>>Nums = [23,56,78,90] >>> Nums.remove(23) >>> Nums [56,78,90]
@gautamsrivastav83304 жыл бұрын
@@poojajain4900 one more thing, I've been working on IDLE, as prescribed in the previous lectures, but when I save it, close it and reopen it, I'm not able to continue in that file. I have to start fresh with a new IDLE file and cannot continue with that I was practicing on.
@sadhnamall73572 жыл бұрын
To delete values (95,14,12) we write the code del nums[2:5]
@SidhharthSidhharth-bn8kq Жыл бұрын
2:4
@akalyam114910 ай бұрын
Can you pls explain how ur saying 2.4. Pls
@ohm415410 ай бұрын
@@akalyam1149 its 2:5 it does not removes the last index mentioned
@khulisomkwevhu69647 ай бұрын
Mine says invalid syntax and red colouring my colon : what does it mean?
@VenkataDattaSaiKumar20056 ай бұрын
[2:4]
@ganeshr185 жыл бұрын
Your lessons are absolutely crystal clear sir!!!!
@praveenanookala44574 жыл бұрын
I was using python 2.5 and when i used the curly brackets for the set, it showed syntax error. So i installed python 2.7.17 and it is working! Great tutorial, sir!
@prachipalav16404 жыл бұрын
You deserve millions of subscribers ❤️
@eternalwolverine40275 ай бұрын
well he did accomplished 2 mill, but I suppose this was 4 yrs ago.
@thatboysavage_official20563 жыл бұрын
Your channel is a great source of coding literacy I've watched 10% of the videos on this playlist 1 night . Really appreciate you. Love from Zimbabwe 🇿🇼
@manassav6 жыл бұрын
your videos just create interest in programming language.... :-)
@swapnilgour13365 жыл бұрын
Sir, You teach in a very intresting way, that makes me to understand very well. Earlier I thoght that pogramming is quite tough, but after watching these video lecture my perception towards programming has changed a lot. Lastly but not the least, thank you sir for making this video lecture programme.I am really thankful to you sir.
@ivanwachira75234 жыл бұрын
best tutorial ever.You make what looks hard be simple.
@pvvdprasad863 жыл бұрын
Explanation of difference between list, tuples, set -> Just what I needed. Teluskunna. Awesome.
@LogicalManSujeet6 жыл бұрын
incredible sir...sir i have a ques.. plz upload a video on how to be a data scientist and its skill set .. please provide tutorials also
@datascienceworld70415 жыл бұрын
First I learned java and now its python ,you are the best teacher
@mannemsrikanth36555 жыл бұрын
Answer for quiz : 1. del nums [2:5] nums [25,36,26] 2. We can also use pop to delete specific index numbers i.e nums.pop(2) nums.pop(3) nums.pop(4) nums [25,36,26]
@Tsr24122 жыл бұрын
thank you
@vickyrock14182 жыл бұрын
We can also use remove
@chembetikarunakar8142 жыл бұрын
U get error if u use pop continously because after we use pop it changes its length and we get error pop index out of range
@NR44singer2 жыл бұрын
Can we use nums.remove[2:5]
@aRCi312 жыл бұрын
del nums [-4:-1] -- code should be as much as simple and correspond with task
@alitdjhe3481 Жыл бұрын
I just started learning python You are really great ❤❤ Thank you from Egypt 🇪🇬💙💙
@sruthir12364 жыл бұрын
You deserve more and more credits. My best wishes for ur youtube journey sir.
@nOiCe12044 жыл бұрын
bro..i know basics of python..but I got some 2-month break...this is would be the best tutorial to rewind the basic's and for learning also...appreciate you bro...love from ap
@raviraimittal Жыл бұрын
nums=[25,36,95,14,12,26] del nums[2:4] #del function will delete numbers from index 2 to index 4 as required in the quiz print(nums)
@MrCroissant-y3f Жыл бұрын
It is [2:5] If [2:4], it won't remove the element 12.
@rajnishcdry Жыл бұрын
@@MrCroissant-y3f if [2:5] it will also delete the last element 26.
@rajnishcdry Жыл бұрын
@@MrCroissant-y3f if [2:5] it will also delete the last element 26.
@dxrkboyy7 ай бұрын
YESSS IT WORKED THANKS!!
@a.y.making9313 жыл бұрын
answer to the assignment question- del nums[2:5]
@priyajain2890 Жыл бұрын
Can you please lemme know, where the assignment questions or quiz questions are given?
@Tushar-dk9fr Жыл бұрын
@@priyajain2890 At the end of video probably in last minute it show in the red box of the screen.
@kavyakunibilli10 ай бұрын
I think nums[2:4] because upto we are mentioning
@prosperhopeman96729 ай бұрын
@@kavyakunibilliyou are wrong. The poster is correct
@tobiasprice53785 жыл бұрын
input >>> num = [25,36,95,14,12,26] delete>>> del num [2:5] result >>> num [25, 36, 26] >>>
@sahirkhan3694 жыл бұрын
nice bro i didnt think of it great
@ShivaPrasad-hm5lk4 жыл бұрын
Is it really correct
@ShivaPrasad-hm5lk4 жыл бұрын
Pls clear it once how did u numbered it 0,1,2 or1,2,
@super_youtube6813 жыл бұрын
BEST OUT OF THE BEST TEACHING FOR BIGGNERS BETTER THAN MOST OF THE CORSES ON OTHER WEBSITES
@Editing_universe09 Жыл бұрын
LIST: append() Adds an element at the end of the list clear() Removes all the elements from the list copy() Returns a copy of the list count() Returns the number of elements with the specified value extend() Add the elements of a list (or any iterable), to the end of the current list index() Returns the index of the first element with the specified value insert() Adds an element at the specified position pop() Removes the element at the specified position remove() Removes the item with the specified value reverse() Reverses the order of the list sort() Sorts the list SET: add() Adds an element to the set clear() Removes all the elements from the set copy() Returns a copy of the set difference() Returns a set containing the difference between two or more sets difference_update() Removes the items in this set that are also included in another, specified set discard() Remove the specified item intersection() Returns a set, that is the intersection of two other sets intersection_update() Removes the items in this set that are not present in other, specified set(s) isdisjoint() Returns whether two sets have a intersection or not issubset() Returns whether another set contains this set or not issuperset() Returns whether this set contains another set or not pop() Removes an element from the set remove() Removes the specified element symmetric_difference() Returns a set with the symmetric differences of two sets symmetric_difference_update() inserts the symmetric differences from this set and another union() Return a set containing the union of sets update() Update the set with the union of this set and others hope this helps ❤
@klaus-mikael_son Жыл бұрын
Thank you so much
@niranjanns8704 Жыл бұрын
ofc. if you don't mind, can you give examples? it will be very helpful to me. Thanks for these🙏🙏
@soumiksagar31473 жыл бұрын
This I think one of the best tutorial on youtube 👍👍👍hats off to you sir.......
@nirajmaurya76805 жыл бұрын
These all are interesting and fun to learn 100% best tutorial.......thank a lot for creating
@VijayaPypuri Жыл бұрын
Really wanna tell this u r just amazing! The thing I like the most in u r tutorial is u just come to the beginners level mind set and explaining the concept not just like a fully professional going with his flow
@bhavikakapadia24626 жыл бұрын
nums = [23,36,95,14,12,26] del nums[2:5] nums [25,36,26]
@rrsk88_farming6 жыл бұрын
Bhavika khatri ? But how
@madhu98296 жыл бұрын
26 should not come
@Skaxarrat6 жыл бұрын
26 is included because [2:5] would stop at the fifth element without deleting it
@RozaLinda2816 жыл бұрын
right
@adarshchoubey96946 жыл бұрын
nums = [23,36,95,14,12,26] del nums[2:-1] nums [25,36,26]
@shivkumar-ik9rs4 жыл бұрын
You are unbelievable MR.Navin Reddy Garu,in on word AWESOME, Never saw this type of easy Teaching from you Execellent Grip in your knowledge
how will 26 come in the set if u put [2:5], you should put [2:4]insteadd
@ramakrishnagubbala27743 жыл бұрын
Your teaching is really easily understandable and fabulous. It very easy for beginners to get a great knowledge sir👏this is the worthy youtube channel with great lectures teaching point to point
@rrsk88_farming6 жыл бұрын
I'm enjoying this series 👍
@nirjala8962 Жыл бұрын
Sir ur sessions are really helpful....in the beginning i have no idea about python..ur teaching helped me a lot. As I am an IIIT student...I am really enjoying ur sessions...thanku very much sir. 🙏🙏🙏🙏🙏 The way I teach is quite simple and enjoyable.....
@@women_kingdom It's not a Tuple Just check the Brackets
@yahyakilima29585 жыл бұрын
why is 26 still not deleted?
@siddupujari90232 жыл бұрын
not everyone can be best at teaching, but You are ...always start with basics.. thats way to go .. good one
@aarthirajendran2994 жыл бұрын
Nums=[25,36,95,14,12,26] Del nums [2:5] O/p = [25,36,26]
@abishakkumarrattanpal50214 жыл бұрын
How it's possible
@ShreyaRajBEC4 жыл бұрын
@@abishakkumarrattanpal5021 as 95,14,12 lie on 2nd , 3rd and 4rt place so we can delete them by typing del[2:5]
@abishakkumarrattanpal50214 жыл бұрын
@@ShreyaRajBEC thnx.. basically i'm not from CS background...just for learning I got into this course
@ShreyaRajBEC4 жыл бұрын
@@abishakkumarrattanpal5021 same here
@abishakkumarrattanpal50214 жыл бұрын
@@ShreyaRajBEC which background?
@praveen_79 Жыл бұрын
the answer is del nums[2:5] . such a good session thankyou sir
@snehajitchandra29766 жыл бұрын
Excellent video sir!!!
@aruneshkartik26763 жыл бұрын
Nice tutor!! concepts get Crystal cleared!! makes programming easy to learn. One of the best tutorials on KZbin.
@sravanienuganti45965 жыл бұрын
Really it is very good for me to learn with this tutorial
@shankargope2475 Жыл бұрын
Learning and practicing the foundation concepts of python with utmost clarity👌All thanks to your teaching methods 🙏. The way you have delivered the lectures keeping the simplicity is really very much helpful. Love your teaching sir ❤
@harsiddhisinghdev46506 жыл бұрын
Thanku sir please explain data science using phython in upcoming vedio's please sir..:-)
@rrsk88_farming6 жыл бұрын
What's data science
@jiteshsharma46926 жыл бұрын
Harsiddhi Singhdev. Yes. Same thing
@jiteshsharma46926 жыл бұрын
Harsiddhi Singhdev. Hey. Hi. Listen
@prashanthakula22256 жыл бұрын
Yes sir. Please start new session on data science
@shravansbagewadi76036 жыл бұрын
@@rrsk88_farming search in Google
@mitalkarkar22403 жыл бұрын
Way of your presentation is very nice, I mean you are not repeating unnecessary sentences over and over again. Awesome work. Thank you.
@jitendra.nayak56 жыл бұрын
Its Awesome,Thank you for the series..and i like your way of teaching sir ,its really helpful for us ,Thank You.
@utkarshpant65494 жыл бұрын
Your intro makes me want to watch the whole video is really wholesome 🥰
@devasish2044 жыл бұрын
Need more information about how to use those ctrl+space operations for List, set, and Tuple.
@sidhuzfire23783 жыл бұрын
Sir tons of thankz ...you are the best tutor.. I am beginner from a non technical background... but intrested to learn data science..was very confused for where to learn python programming...searched so much...and atlast I got the best one..thanku so much sir..now I feel..yaa I too can do it....I will be always grateful to u sir
@MANISHSHARMA-xk1su6 жыл бұрын
Amazing video sir....❤️
@HariPrasad-oi1vp4 жыл бұрын
1:pop(2),pop(3),pop(4),pop(-2),pop(-3)pop(-4),del nums[2:5],remove nums[2:5] or by each one
@bharatbhatia60005 жыл бұрын
Undoubtedly your content is awesome!! Just out of the context,i think the starting tone is taken from laughter challenge . Is'nt it? :-p
@adivijji2754 жыл бұрын
Ur channel is a best privilege that a beginner can find .. thank you Navin gaaru
@nitishnitish91724 жыл бұрын
del nums[2:5] or del nums[-4:-1]
@katikisailaja10864 жыл бұрын
NYC
@valorantclipbaiter29255 жыл бұрын
I have never seen such nice tutor sir.keep it up
@paraspandey34013 жыл бұрын
who are after there class 12th :-)
@GudlaKartik6 ай бұрын
Me
@jyotivirendraagrawal14846 ай бұрын
Mr
@oooorrrr55554 жыл бұрын
Thank you so much! I'm rookie in programming and i'm start to like it from your videos! :D
@rumanmdhasan62244 жыл бұрын
num = [25,36,95,14,12,26] del num[2:5] print(num)
@rishi96463 жыл бұрын
[25,36,95]
@simrannadaf40384 жыл бұрын
Nice tutor!!concepts gets Crystal cleared!!makes programming easy to learn
@ShivomBiswasF Жыл бұрын
Well thanks a lot sir you are great I am watching this video 4 years after the upload but I loved your explanation a lot. and here the answer :- nums = [25, 36, 95, 14, 12, 26] nums [25, 36, 95, 14, 12, 26] del nums[2:5] nums [25, 36, 26]
@nh45724 жыл бұрын
Ans is del nums[2:5] Am i right sir?
@JainHruday3 жыл бұрын
Yep
@kalivaraprasad29284 жыл бұрын
Navin, I am a Mechanical Engineer, having 0 knowledge in programming. Want to change my career into programming. Once I started browsing tutors in you tube, I saw your video, I feel like i am in comfortable zone that I found the right tutor.
@thelost82034 жыл бұрын
can we use pop in set? it says "pop() takes no arguments (1 given)" set does not support indexing right? Refrence to 5:33
@arghyabhattacharya79224 жыл бұрын
same question
@thimmarajur14374 жыл бұрын
It doesn't support indexing right......but in sets we cannot specify indexing inside brackets and we can just use .pop() and it removes last element
@r.gouthamsrisaisknowledgeh16363 жыл бұрын
I am watching each and every video of python coding on all channels but this is the best I subscribed to your channel thanks for saying coding free
can you tell me how to use it or from where i can learn it
@akalyam114910 ай бұрын
Iam commerce student now iam pursuing MBA finance I too need to learn python.. the man show me the way to learn ❤ thank you so much ❤..
@unknown__..--4 жыл бұрын
so the basic difference between list and tupule is () and[] . am i right? remember i am talking about the basic difference.
@manishsharma22114 жыл бұрын
List [ ] Tuple ( )
@profkpabila5593 Жыл бұрын
My Name is Abdul Rashid from Ghana. In fact, I am really enjoying the tutorial for the first five stages. I shall follow to the end.
@Mynotes-mr7uw Жыл бұрын
6:28 del nums[2:5]
@manishkumarmani14204 жыл бұрын
Awesome, Amazing , Excellent session.... Thanks a lot Navin Sir........
@RameshBabu-di5wn4 жыл бұрын
del[2:5]
@samyakjaipuria27294 жыл бұрын
your videos just create interest in the programming language
@alqamasharique41966 ай бұрын
Legends watching this in 2024🤣
@egbejuletuoyo5913 ай бұрын
🤝🏾🤝🏾
@lipsa22 жыл бұрын
I really appreciate the way of your teaching. it's formatted, clear and concise.
@chandrasekharreddi11066 жыл бұрын
Ctrl+space not working
@bharatthsandheep4145 жыл бұрын
working in IDLE!!
@avert_5 жыл бұрын
use IDLE PYTHON
@KRITIKARANIDEB Жыл бұрын
hi Navin. I am 9 years old and thank you for helping me with python, I really appreciate it.
@993jagan5 жыл бұрын
I'm not getting the pop-up's .what might be the problem. even ctrl+space is also not working
@PriyankaGupta-le1dt4 жыл бұрын
me too not getting in list also and here also
@bharathsai46044 жыл бұрын
@@PriyankaGupta-le1dt same here i am using 3.8 interpreter I guess it will come in pycharm community version
@sanatangoyal84024 жыл бұрын
sir because of you i can learn these all things in very very evry easy way. salute to you sir
@abhijeetpatil34402 жыл бұрын
We can add values in tuple like this: tup1 = (1,2,3,4) tup2 = (5,6,7,8) tup3 = tup1 + tup2 print(tup3) print(type(tup3) Output: (1,2,3,4,5,6,7,8)
@amarthakur35684 жыл бұрын
Naveen bhaiya thank you so much you helped me alot i have no words for u... I was wandering frm 1 channel to another but... U r the best bhaiya... Thnx again☺☺☺☺
@kumaresan_7 Жыл бұрын
We can delete the collection of values by using reomve Remove=[94,14,12] print(nums) 25,36,26
@deepakkapse5414 жыл бұрын
His first video had over 2.3M views and this one has around 7Lakh. Congratulations, you have not given up yet.
@bhargavreddy94853 жыл бұрын
Really you are making my process of learning easier..
@champapipalia93154 жыл бұрын
😘It's the best tut I have seen in my hole life......😘😘👍🤩 I was not able to understand python from other youtubers... But from your all videos, I have learnt python by heart..... I love your videos 😘😘🤩🤩
@nirjala8962 Жыл бұрын
Ur sessions are far better than code with Harry....
@raihanhossain5964 ай бұрын
Q. num = [25,36,95,14,12,26] if we want to remove the value 95, 14 and 12, we use: num.remove (binary formation of that number) example: to remove 95, the formula will be num.remove (2).. Thank you for this videos. I am learning python throughout the playlist. I hope I will learn enough.
@chaithureddy70014 жыл бұрын
hii bro i am chaitanya reddy i had many doughts in basics in python by your guidence i am now able to train my mind easly tq bro
@mayweathermoney51918 ай бұрын
The best tutor even... you make it easier with all the explanations in your series. You making learning python fun
@PhycatainmentMusic3 жыл бұрын
I request everyone to actually watch the ads that come before his videos. The guy is teaching all of us SO good AND it's for free. The least we can do is to subscribe, like, and watch the ads. For those of you new to youtube monetization, the creators only get their earnings if the ad is viewed completely. So if we skip an ad, it won't get the creators any money.