it becomes clear now why certain methods don't work on Tuple , but on List, the immutability aspect, easier to reason out things now, thank you very much sir :)
@HariPrasad-gm7ce9 ай бұрын
Whether it is Big data or Sql or Python It is the Sumit sir way of teaching the subject makes him Unique & topmost..🎉🎉
@vandanapatil81829 ай бұрын
No doubt you are the best teacher in India 😊🎉
@sopankardile-w1t9 ай бұрын
One of the best way to learn pyhton here thank you so much sumit sir.the way of your teaching which is very bes & helpfull for me .Thank you once again.please also upload more videos.
@sumitmittal079 ай бұрын
glad that you liked it
@atifhafeez88329 күн бұрын
Hi Sumit Sir, Just quick question. At 28:45, you have used continue in the for loop? what is the need of it when the same can be achieved only with a single if statement? Because as far as I know the for loop will iterate all the values unless a "break" statement is encountered.
@pridename28584 ай бұрын
Hi Sumit sir, this course is absolute gem. Shockingly just few thumbs up clearly indicates that true guru is still out of reach from vast aspirant of Data community. Guys just go through the course 2-3 times, I am on second time and enjoying the crisp clear contents for Data related job.
@4n3roid2 ай бұрын
39:53 Sort and Reverse will not work for Tuple as they are sequence type and immutable data structures.
@SoumyaBiswas37Ай бұрын
Yes. We can use count() for tuple data types because we are not changing any value and it will just display the count of occurrence
@shrutisamal9 ай бұрын
very insightful session! truly appreciate the fact that you have included the real life prod based applications rather than just demonstrating the syntax and rarely used functions. looking forward to next session. cheers!
@ArpitSrivastava19949 ай бұрын
Great video sir ! This is the most concise way in which these concepts should be explained
@shikhashikha62909 ай бұрын
yes count, sort, reverse work in tuple
@rahulreddy5237Ай бұрын
we can do count() method in tuple because it is data retrieval not manipulation
@GANESHPATIL-q6t2 ай бұрын
Great way of teaching. Thank you sir!!
@avibitm9 ай бұрын
no one can replace you as mentor for me thanks for every thing
@sumitmittal079 ай бұрын
thank you very much
@abhishekn7869 ай бұрын
Your way of explaining topics is insane🔥
@srinivasankapally9 ай бұрын
Super content sir, if possible can you please provide this content as a pdf or any blog for future reference.
@abhis88882 ай бұрын
Thank you so much summit sir you made it so easy to learn
@swapnaligaikwad92919 ай бұрын
Completed 3rd session Loved it ❤❤
@arpithaks34677 ай бұрын
your teaching skills is to good thank you sir
@vannaap50874 ай бұрын
Great explanation 👌
@pcmvenkatesh8 ай бұрын
Loved it a lot. Thank you so much Sumit Sir. God bless you.🥰
@AniketPatil-yr1iw7 ай бұрын
38:40 :: print(order.count(50)) --> this command is applicable for tuple as well 👍 bcz we are not makin any changes 40:10 :: orders.sort() print(orders) --> this will not work for tuple bcz we are changing the seq of data inside the tuple and In tuple it wont allow
@josephvincent10403 ай бұрын
Awesome series. Absolute Gem :-). Thank you Sumit sir, for this awesome series.
@sreenivasulareddy-s1w9 ай бұрын
Hi Sumit Sir Are you going to cover PANDAS and NUMPY libraries as well ?
@nasibsingh35948 ай бұрын
The code at 34:30 will not work if we keep last value in list other than int and float. Program will throw error saying list out bound
@kalyan7699 ай бұрын
for tuple also same we can find the count of elements
@syedahmed67638 ай бұрын
Thank you for making these videos. It's a great refresher before the interviews. Btw we can count() on a tuple.
@sreedharasameerkumarilapav85059 ай бұрын
excellent sir. Thank you so much.
@Daily_Dose_0109 ай бұрын
Sir please give discount to big data course at trendy tech, its too costly
@sumitmittal079 ай бұрын
the course is much more worth, there is a no cost emi that you can opt for
@AkshayNagare-w6x8 ай бұрын
@@sumitmittal07sir atleast allowed to pay fees in installments not everyone have credit card or money to at a time please think on installments payment option it would help many students to build their carrier in data engineering it's request sir
@AkshayShinde-bf3jp8 ай бұрын
Yes, orders.count(), orders.index() are applicable in tuple Whereas orders.sort() and orders.reverse() not applicable in tuple
@diptigupta82589 ай бұрын
Sir , can you cover List comprehension . It helps in reducing the code length and i don't understand it well
@kaladharnaidusompalyam8519 ай бұрын
Waiting for Set & Dicts session. Thank you SIr
@sumitmittal079 ай бұрын
Very soon
@karthikeyankarthik47528 ай бұрын
Super sir, it's useful to me.
@diptigupta82589 ай бұрын
reverse will mot work for tuple as it will change the tuple.
@PujaPrasad-qu1yi6 ай бұрын
Hello @sumit sir, I tried for while condition for list, It's keep running for more than 20min. Can i get to know why? order_amount = [100,200,None,"invalid",300,400.5] i = 0 sum = 0 while i < len(order_amount): if type(order_amount[i]) == int or type(order_amount[i]) == float: sum = sum + order_amount[i] else: i = i + 1 continue i = i + 1 print(sum)
@thordreamer74655 ай бұрын
Hello @PujaPrasad, The increment after continue cannot go out of if loop , check the indentation correctly for i = i + 1 .
@kaladharnaidusompalyam8519 ай бұрын
because of immutable feature Tuple won't accept for sorting the item position and also reversing the items.It got fixed with index entire the pipeline
@SoumyaBiswas37Ай бұрын
Sort() and reverse() won't work for tuple because data will be modified in these cases
@ShivrajSingh-x5j9 ай бұрын
amazing session
@adireddy29548 ай бұрын
Hi, Do you have an notes for this PYTHON course. if yes, please provide
@Aziz-oi1qt6 ай бұрын
nice explanation
@rushikesharulkar47289 ай бұрын
Sir, I am unable to find the text files you are making for notes. Where can I find those? Thank you.
@sumitmittal079 ай бұрын
I will be adding it to Github and sharing the link in the description in the upcoming videos.
@jaisriram89899 ай бұрын
Thank you for this excellent content!
@sumitmittal079 ай бұрын
Glad you enjoy it!
@bharathchary59279 ай бұрын
Sir When ur going to upload The 4th video .
@navjotsingh-hl1jg9 ай бұрын
sir please har roz aap python ki video upload kara karo
@arpithaks34679 ай бұрын
please share running notes it will be helpful to us
@DeekshaSrivastava-r7j9 ай бұрын
will you teach arrays and virtual arrays
@sumitmittal079 ай бұрын
Will be covered as part of the upcoming videos.
@RITURAJRANJAN-st7dv8 ай бұрын
great content
@shobhittiwari20149 ай бұрын
sir when is next video getting uploaded ?
@sumitmittal079 ай бұрын
on tuesday, 26th march
@gowthams.v60046 ай бұрын
only none and invalid will come in else part this logic of it becoming an infinite loop i am not able to understand can anyone explain me what is happening thanks in advance time:31 mins
@AmarSi2189 ай бұрын
Sir How many sessions will be there in this playlist ?
@sumitmittal079 ай бұрын
many more...
@AmarSi2189 ай бұрын
I am thinking to take big data course i have exp with powerbi and sql currently learning python from your videos i am asking about total session because i am planning to enroll in April
@kalyan7699 ай бұрын
for tuple sort & reverse will not work
@kiranmg48319 ай бұрын
Even for set
@sakshijain35349 ай бұрын
Thanks sir
@sumitmittal079 ай бұрын
Welcome
@naginafathima45629 ай бұрын
Please number your sessions so that audience is not confused about the order. Thank you!
@sumitmittal079 ай бұрын
sure
@KiyanshLife9 ай бұрын
"sort" and "reverse" are not work for tuple =>Immutable
@hari_13579 ай бұрын
Set elements are immutable but the set itself is a mutable object
@sumitmittal079 ай бұрын
I will cover all this granularity about set in upcoming session in proper detail.