Could you please create a playlist with some advanced Python lessons. It would be a great help. This is a great playlist, by the way, your content is straight to the point and easy to follow.
Your class are very clear .. But i want a clarification regarding sort .. can we sort a list which holds string,int,float as elements in it? How will it get sorted ? What is the output?
Sir I have a doubt that is can we insert the value in list at run time like using input method,in empty list or values are list,can we add value using insert method at run time?
Sir, i have practically applied the extend function like this-a.extend(11,12) ..then its showing syntax error and extend function cannot take two values at a time.. Then i tried for it like this-a.extend('1121') The i get the output like this-['1','1','2','2'] But i wanted to get [11,12].... So how to get two digit no. Woth extend in list.. More than two at a time...plz tell asap.. Sir.
Hi Use the following to get the elements sorted in descending order. l.sort(reverse=True) Using the reverse argument as True we can get the elements sorted in descending order.
Could you please create a playlist with some advanced Python lessons. It would be a great help. This is a great playlist, by the way, your content is straight to the point and easy to follow.
Hands down the best teacher !
Great work sir really thankful
Thank you for your comprehensive coverage of list methods.
Very well explained. Easy to understand. Thank you sir!
Most thankyou sir
Very nice explaination i haven't got any doubt in any function....you explained very good ...thnks ,😊😁
I am highly impressed with your videos
God of computer science
Thank you
Nice presentation. Well understandable
Thank you so much. you have made me understand the lists topic in python
Best python teacher
I hope you could be my computer teacher 🙏
You teach so well❤
Best teacher 10/10
superb sir i understood
thank u sir for such a good explanation it made lists an easy topic which was so confusing before.
Nice sir....thanks alot sir😊
Nice sir ,you done a great job
Thanks now I felt I will learn this language easily with your help
Thanku for loat of help
Excellent 💯
What for join() method is used
superb explanation sir
very nice explaination.
Your class are very clear .. But i want a clarification regarding sort .. can we sort a list which holds string,int,float as elements in it?
How will it get sorted ?
What is the output?
It will give you an error
Good explanation sir
superb teachings
Thank you so much sir
Hello sir ur videos are very useful. It is just a request after completing ur video pls provide the link for the next session of the same topic.thanks
Sir pop function is used to delete any element from the list.
Sir I have a doubt that is can we insert the value in list at run time like using input method,in empty list or values are list,can we add value using insert method at run time?
sir if we want to remove same no. in different index in list for example seq = [1,2,3,4,1,5,1] we need to remove 4th index value what we need to do?
Beats my teacher 10x times...
sir , if we have the list like l1 =[10,20,30,40,20] then l1.index(20,1) then out put return the index 1 or 4
What to do if i want to remove 1 from index value 3 in seq1
Sir if we want to remove the last 2 digits can we do that with pop function?
Sir what is the diffrence between del and remove function sir ?
How to delete perticular element in list
Sir, i have practically applied the extend function like this-a.extend(11,12) ..then its showing syntax error and extend function cannot take two values at a time..
Then i tried for it like this-a.extend('1121')
The i get the output like this-['1','1','2','2']
But i wanted to get [11,12]....
So how to get two digit no. Woth extend in list.. More than two at a time...plz tell asap.. Sir.
Hi pass list of elements to extend function. a.extend([11,12])
Are these videos enough if you want to get PCAP certificate?
Hello sir I have a question for sort function if we want to create list in descending order than what should be the command. Pls tell
Hi
Use the following to get the elements sorted in descending order.
l.sort(reverse=True)
Using the reverse argument as True we can get the elements sorted in descending order.
Sir but it shows true is not defined.what to do sir
U can use
I.sort()
I.reverse()
Print(I)
Sir what can be the approach for solving programs
If seq=[1,5,2,'ups'5,7,'cpu']' then how will sort() function Sort the list Sir.
Sorting applicable only with number
sort() only supports all 'str' or all 'int'/'float'. It does not support a mix of numerical and string in the list.
TypeError: '
Sir...what are the total topics in data science...plz tell me sir...i have confusion...
Sir, please explain prime numers, fibonacci in python. Also python is my first language so teach for beginners
is the sort function only for assending perpose?
then how to achive descending order?
seq.sort() followed by seq.reverse()
newlist= [3,4,1,2,6,5]
newlist.sort( reverse=True)
print(newlist)
Tqu sir
sir do dsa course in python
sir how we do frequency of elements in a list
Using count function
Syntax: list.count(element you want to know frequency of occurrence).
How sort number in descending order sir