@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*
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!
@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.
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.
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.
@@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]
@@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.
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)}
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❤🔥💥
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
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!
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]
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.
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 🇿🇼
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]
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
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.
Hi, your teaching skills are speechless for me. you are the best when comes in teaching especially in python or any other programming lang.. i do have a question "When we print a set values it will print regardless of its sequence, but when u try to print same set of vales multiple times it is printing in the same sequence Eg : s = {1, 2, 4, 5, 7, 12}, then we ask for its op with >>>s, OP: {1, 2, 4, 5, 7, 12}, its always print the same sequence. pls answer if my question is agreeable. Thanks in advance...
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.....
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 ❤
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
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
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.
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
# 2nd way to solve nums=[25,36,95,14,12,26] nums.remove(95) nums.remove(14) # here we have to use remove function separately for each number as it takes only one argument at a time nums.remove(12) print(nums)
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 ❤
Thank you very much for your interesting way of teaching. I have a question. Did you put all of your python-related tutorial in a long single course? If it is Not, why? It will be much more helpful.
It actually wouldn't be very helpful, especially to those who like to learn in small segments or only have limited time to watch tutorials, so smaller bits on specific subjects makes it much easier to learn.
I tested the same values you tested in the set and I got the same results in both >>> s = {22,25,14,21,5} >>> s {5, 14, 21, 22, 25} >>> s = {25,14,98,63,75,98} >>> s {98, 75, 14, 25, 63}
By using tup we can change the value in a particular position >>> tup [7, 8, 'k', 9] >>> tup[0] 7 >>> tup[0]=0 >>> tup [0, 8, 'k', 9] >>> tup[0]=4 >>> tup [4, 8, 'k', 9] >>>
We can remove each element individually by either remove or pop function incase if you need to remove more than 1 element we can go with this nums = [25,36,95,14,12,26] for x in nums: if x not in (95,14,12): print(x)
I never seen such a nice tutor like you. Keep it up Sir. You are more valuable
@Riyanshi's vlogs you can share the link dhidi😄
Do you know why we love to learn python under ur guidance??
Coz u bother about beginners 🙏❤️
yes ofcourse
Yes true
even his assent is also more favourable to beginners and it creates interest to the listeners
Ye
@@satyamaruthi1145 His voice has a lot of enthusiasm.
am watching all add not skipping one of the best tutorial on RUclips
Telusukoo..
Mee 2
Meetoo
@Skylar James scam :O
@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*
I am a mechanical engineer and i wanted to learn python and then i found you thanks a lot man!!
Me too
I'm also...
Which college?
@@adityaprakash8217 LIET Alwar Rajasthan
@@blenderhander9485 Ohh ok
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!
@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.
ya , It's helpful
I also wanted to say same thing ...
@@sakshidherange7554 Welcome 😊
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.
>>s1=set() its also showing error yaaar
@@ankitha8530 we can create set using{ }
Thanks
Both are working
To delete values (95,14,12) we write the code
del nums[2:5]
2:4
Can you pls explain how ur saying 2.4. Pls
@@akalyam1149 its 2:5 it does not removes the last index mentioned
Mine says invalid syntax and red colouring my colon : what does it mean?
[2:4]
Sri garu Meeru super Andi because mee valla ma abbai Python nerchagalugutunnadu
hats off to our service sir garu🙌🙌🙌
We need professors like you in colleges and then studying becomes interesting and enjoyable. Doing great job.
madda gudu adidi
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.
The answer to the quiz question..
>>>Del nums [2:5]
>>>Nums
[25,36,26]
A new thing I learnt today
@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
Why couldn’t we use nums.remove(2:5)
@@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]
@@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.
my man deserves a billion subscribers i swear great videos man!!
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,❤️❤️
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)
It is [2:5]
If [2:4], it won't remove the element 12.
@@MrCroissant-y3f if [2:5] it will also delete the last element 26.
@@MrCroissant-y3f if [2:5] it will also delete the last element 26.
YESSS IT WORKED THANKS!!
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)}
Thank you
where is the question?! time please
can u tell me the difference between index and count? I started learning python today so I dont know it
@@jagritimahata3042 Indexing is position of the number while count is total number of elements
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❤🔥💥
Now he got..
1.35M now
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
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!
Explanation of difference between list, tuples, set -> Just what I needed. Teluskunna. Awesome.
Thank you Navin Reddy for making Python series.
I just started learning python
You are really great ❤❤
Thank you from Egypt 🇪🇬💙💙
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]
thank you
We can also use remove
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
Can we use nums.remove[2:5]
del nums [-4:-1] -- code should be as much as simple and correspond with task
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.
Your lessons are absolutely crystal clear sir!!!!
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 🇿🇼
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
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]
your videos just create interest in programming language.... :-)
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
You deserve millions of subscribers ❤️
well he did accomplished 2 mill, but I suppose this was 4 yrs ago.
We can delete the collection of values by using reomve
Remove=[94,14,12]
print(nums)
25,36,26
answer to the assignment question- del nums[2:5]
Can you please lemme know, where the assignment questions or quiz questions are given?
@@priyajain2890
At the end of video probably in last minute it show in the red box of the screen.
I think nums[2:4] because upto we are mentioning
@@kavyakunibilliyou are wrong. The poster is correct
First I learned java and now its python ,you are the best teacher
You deserve more and more credits.
My best wishes for ur youtube journey sir.
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
best tutorial ever.You make what looks hard be simple.
BEST OUT OF THE BEST TEACHING FOR BIGGNERS BETTER THAN MOST OF THE CORSES ON OTHER WEBSITES
input >>> num = [25,36,95,14,12,26]
delete>>> del num [2:5]
result >>> num
[25, 36, 26]
>>>
nice bro i didnt think of it
great
Is it really correct
Pls clear it once how did u numbered it 0,1,2 or1,2,
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.
These all are interesting and fun to learn
100% best tutorial.......thank a lot for creating
This I think one of the best tutorial on youtube 👍👍👍hats off to you sir.......
quiz answer
>>> nums=[25,36,95,14,12,26]
>>> nums
[25, 36, 95, 14, 12, 26]
>>> del nums [2:5]
>>> nums
[25, 36, 26]
how will 26 come in the set if u put [2:5], you should put [2:4]insteadd
the answer is del nums[2:5] . such a good session thankyou sir
>>>nums=[25,36,95,14,12,26]
>>>del nums[2:5]
>>>nums
[25,36,26]
geeta bhatt tuple doesn't perform deletion
@@women_kingdom It's not a Tuple Just check the Brackets
why is 26 still not deleted?
Hi, your teaching skills are speechless for me. you are the best when comes in teaching especially in python or any other programming lang.. i do have a question "When we print a set values it will print regardless of its sequence, but when u try to print same set of vales multiple times it is printing in the same sequence Eg : s = {1, 2, 4, 5, 7, 12}, then we ask for its op with >>>s, OP: {1, 2, 4, 5, 7, 12}, its always print the same sequence. pls answer if my question is agreeable.
Thanks in advance...
Nums=[25,36,95,14,12,26]
Del nums [2:5]
O/p = [25,36,26]
How it's possible
@@abishakkumarrattanpal5021 as 95,14,12 lie on 2nd , 3rd and 4rt place so we can delete them by typing del[2:5]
@@ShreyaRajBEC thnx.. basically i'm not from CS background...just for learning I got into this course
@@abishakkumarrattanpal5021 same here
@@ShreyaRajBEC which background?
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.....
Need more information about how to use those ctrl+space operations for List, set, and Tuple.
Ur channel is a best privilege that a beginner can find .. thank you Navin gaaru
nums = [23,36,95,14,12,26]
del nums[2:5]
nums
[25,36,26]
Bhavika khatri ? But how
26 should not come
26 is included because [2:5] would stop at the fifth element without deleting it
right
nums = [23,36,95,14,12,26]
del nums[2:-1]
nums
[25,36,26]
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
Ans is del nums[2:5]
Am i right sir?
Yep
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)
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
❤
Thank you so much
ofc. if you don't mind, can you give examples? it will be very helpful to me. Thanks for these🙏🙏
Nice tutor!! concepts get Crystal cleared!! makes programming easy to learn.
One of the best tutorials on RUclips.
del nums[2:5]
or
del nums[-4:-1]
NYC
Way of your presentation is very nice, I mean you are not repeating unnecessary sentences over and over again. Awesome work. Thank you.
Undoubtedly your content is awesome!!
Just out of the context,i think the starting tone is taken from laughter challenge . Is'nt it? :-p
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
Really it is very good for me to learn with this tutorial
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
so the basic difference between list and tupule is () and[] .
am i right?
remember i am talking about the basic difference.
List [ ]
Tuple ( )
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
num = [25,36,95,14,12,26]
del num[2:5]
print(num)
[25,36,95]
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.
Its Awesome,Thank you for the series..and i like your way of teaching sir ,its really helpful for us ,Thank You.
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.
nums = [25, 36, 95, 14, 12, 26]
del nums[2:5]
output: [25, 36, 26]
can you tell me how to use it or from where i can learn it
not everyone can be best at teaching, but You are ...always start with basics.. thats way to go .. good one
sir because of you i can learn these all things in very very evry easy way. salute to you sir
Thanku sir please explain data science using phython in upcoming vedio's please sir..:-)
What's data science
Harsiddhi Singhdev. Yes. Same thing
Harsiddhi Singhdev. Hey. Hi. Listen
Yes sir. Please start new session on data science
@@rrsk88_farming search in Google
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
Excellent video sir!!!
# 2nd way to solve
nums=[25,36,95,14,12,26]
nums.remove(95)
nums.remove(14) # here we have to use remove function separately for each number as it takes only one argument at a time
nums.remove(12)
print(nums)
del[2:5]
Tuple can be modified by unpacking and packing technique.
T=(56,6,7,32,65)
T=A,B,C,D,E
A,B,C,D,E=34,56,89,53,69.
I'm enjoying this series 👍
Sir should I go the step by step video for python in this tutorial or a whole full fledged 6 hr video of yours?
Amazing video sir....❤️
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 ❤
who are after there class 12th :-)
Me
Mr
Thank you very much for your interesting way of teaching. I have a question. Did you put all of your python-related tutorial in a long single course? If it is Not, why? It will be much more helpful.
It actually wouldn't be very helpful, especially to those who like to learn in small segments or only have limited time to watch tutorials, so smaller bits on specific subjects makes it much easier to learn.
can we use pop in set? it says "pop() takes no arguments (1 given)"
set does not support indexing right?
Refrence to 5:33
same question
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
Really you are making my process of learning easier..
6:28 del nums[2:5]
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
nums = [25,36,95,14,12,26]
del nums[2:5]
print(nums)
OUTPUT = [25,36,26]
your videos just create interest in the programming language
Ctrl+space not working
working in IDLE!!
use IDLE PYTHON
hi Navin. I am 9 years old and thank you for helping me with python, I really appreciate it.
Legends watching this in 2024🤣
🤝🏾🤝🏾
I tested the same values you tested in the set and I got the same results in both
>>> s = {22,25,14,21,5}
>>> s
{5, 14, 21, 22, 25}
>>> s = {25,14,98,63,75,98}
>>> s
{98, 75, 14, 25, 63}
I'm not getting the pop-up's .what might be the problem. even ctrl+space is also not working
me too not getting in list also and here also
@@PriyankaGupta-le1dt same here i am using 3.8 interpreter
I guess it will come in pycharm community version
By using tup we can change the value in a particular position
>>> tup
[7, 8, 'k', 9]
>>> tup[0]
7
>>> tup[0]=0
>>> tup
[0, 8, 'k', 9]
>>> tup[0]=4
>>> tup
[4, 8, 'k', 9]
>>>
We can remove each element individually by either remove or pop function incase if you need to remove more than 1 element we can go with this
nums = [25,36,95,14,12,26]
for x in nums:
if x not in (95,14,12):
print(x)
I have never seen such nice tutor sir.keep it up
I really appreciate the way of your teaching. it's formatted, clear and concise.
The answer maybe del nums[2:5] the print(nums) that shows [ 25,36,26]
Your way of teaching is really excellent