PYTHON TUPLES (Creating , Updating , Deleting & Accessing Elements) - PYTHON PROGRAMMING

  Рет қаралды 80,475

Sundeep Saradhi Kanthety

Sundeep Saradhi Kanthety

Күн бұрын

Пікірлер: 70
@Abstra_Motifs
@Abstra_Motifs 4 жыл бұрын
This guy is exceptional and very generous. Giving out this well explained tutorial free of charge can only come from someone with a large heart. I have received a great knowledge of Python listening to this guy. He is a great teacher. May God reward you abundantly. Thanks for your generosity.
@kushalbhattacharjee2252
@kushalbhattacharjee2252 Жыл бұрын
not only with a big heart but with great skills, he is a life saver
@ornealm
@ornealm 5 жыл бұрын
I love this explanation of Tuples...made very simple. Thank You!
@seshasai7348
@seshasai7348 2 жыл бұрын
Hi sir actually iam from Automation background which is uipath. But currently iam trying to learn python. By seeing your tutorials it seems like spoon feeding which helps to learn very easy. Thank you sir
@saadsalim1036
@saadsalim1036 4 жыл бұрын
Hats off the way you explain with great efforts and really we need such mentor's
@nduwayesuorivier3014
@nduwayesuorivier3014 2 жыл бұрын
well explained May God bless him and enlarge him Nice day
@suvamghosh7746
@suvamghosh7746 5 жыл бұрын
Best explanation!! Tq so much
@truthbehindbsnl4g495
@truthbehindbsnl4g495 2 жыл бұрын
thanks. best teaching. Simple. God bless you bro
@sundar6096
@sundar6096 3 жыл бұрын
I would like to appreciate you work and explaination. You have done great job keep going on
@amarn8543
@amarn8543 4 жыл бұрын
good explanation sundeep. thank you.
@nehachaudhari5393
@nehachaudhari5393 Жыл бұрын
Nice teaching
@kripashankar_yadav
@kripashankar_yadav 4 жыл бұрын
Good job sir 👍
@THETHIRDEYEjoji
@THETHIRDEYEjoji Жыл бұрын
I have finally found my python teacher
@snehavella6231
@snehavella6231 6 жыл бұрын
Sir your explanation is in such a way that anybody can understand tq for that...can u please try to upload complete vedios as soon as possible on python and aptitude .
@anithaanitha5414
@anithaanitha5414 5 жыл бұрын
Yes sir
@anithaanitha5414
@anithaanitha5414 5 жыл бұрын
There is no one channel beat ur channel
@jeeveshbaliya9061
@jeeveshbaliya9061 4 жыл бұрын
Thank you for explaining in such a simple way
@Village_Crystal_Stone
@Village_Crystal_Stone 3 жыл бұрын
Challa baga cheparu...❤️ thank you so much
@Kannadiga6799
@Kannadiga6799 Жыл бұрын
Legend explanation
@pankajsbisht
@pankajsbisht 2 жыл бұрын
Well explained sir👏🙏
@rasagnabathyala3440
@rasagnabathyala3440 3 жыл бұрын
Good explanation ..Thank you sir
@jyotiali1220
@jyotiali1220 3 жыл бұрын
Good explanations
@enterintoentertainmentwith5707
@enterintoentertainmentwith5707 2 жыл бұрын
God bless you❤ sir
@NihoosWorld
@NihoosWorld 4 жыл бұрын
Hi Sundeep, Can you tell me where do we use an empty tuple and does there exist any advantage of this?
@ramaseshanramanathan3109
@ramaseshanramanathan3109 Жыл бұрын
Thanks. Very well explained
@shahzadnoor3589
@shahzadnoor3589 5 жыл бұрын
Level Sir Apka Love From Pakistan
@devilbiswas1253
@devilbiswas1253 5 жыл бұрын
oo janab sab thk h
@AjayKumar-ky2sr
@AjayKumar-ky2sr 5 жыл бұрын
Should the comm-seperated in both list and tuple be in ascending order?
@sundeepsaradhi
@sundeepsaradhi 5 жыл бұрын
Hi No it may not be in sorted order.
@bijenderchhoker6299
@bijenderchhoker6299 5 жыл бұрын
Superrrrrrrrr😎😎🙏🙏✌✌✌🙏
@vardhandondapati812
@vardhandondapati812 Жыл бұрын
thank you sir
@talentbhebhe660
@talentbhebhe660 8 ай бұрын
Very clear
@faizankhanseo4639
@faizankhanseo4639 3 жыл бұрын
awesome
@rapaka.harshini123
@rapaka.harshini123 5 жыл бұрын
Sir please post python oops concepts
@anumolabalaramakrishna3343
@anumolabalaramakrishna3343 5 жыл бұрын
Super sir👌
@kennethstephani692
@kennethstephani692 2 жыл бұрын
Great video!
@charantangisetti6824
@charantangisetti6824 3 жыл бұрын
Sir please share the notes with us it will be easy for us to learn the concepts
@chimatanagulmeera1278
@chimatanagulmeera1278 2 жыл бұрын
Sir please share the notes
@sudhansumtripathy
@sudhansumtripathy Жыл бұрын
Hi Sir, can we use tuples for conditional opeartions and what would be the output if its true or false
@nishitadash971
@nishitadash971 5 жыл бұрын
sir can we give a runtime input into a tuple and make an array of it?....(as in let us assume that we are creating a message box and the user enters the message as many time he wishes to . And every time he enters a message it has to be stored in a tuple and we will have to access the messages as per its index no.) WILL THAT BE POSSIBLE?......Pls help me out I'm confused ...
@sundeepsaradhi
@sundeepsaradhi 5 жыл бұрын
hi Nishita i think updation of TUPLE is not possible but we can convert TUPLE to LIST which can be updated using APPEND method and after updation we can again convert LIST to TUPLE. t=(1,) ---------- creation of tuple with one element. s=list(t) -------- converting tuple, t to List s s.append(2) ---- Updating the list with second element t=tuple(s) ---- converting list,s to tuple t. Now we can access the elements from tuple with indexing. I think this way we can access it.
@nishitadash971
@nishitadash971 5 жыл бұрын
Sir but I won't even know what is the first message, in that case, how can I do this--> t=(1, )? this is the case when u know what the first element is....
@nishitadash971
@nishitadash971 5 жыл бұрын
sir one more thing, I know that this Q is a bit out of the box(I'm sorry for that). Suppose we have multiple methods inside a class, can we access each method inside the class? in python...
@sundeepsaradhi
@sundeepsaradhi 5 жыл бұрын
hi actually i need to check the oops concepts in python as now i am learning and practicing.
@sundeepsaradhi
@sundeepsaradhi 5 жыл бұрын
hi then just create list and then convert it into tuple.
@KalpsVlogs
@KalpsVlogs 4 жыл бұрын
I tried same tuple_name with different number of element as u Said it's immutable first that means can be override I see possible but append and insert is not possible .. can u explain
@sundeepsaradhi
@sundeepsaradhi 4 жыл бұрын
Yes Once tuple is created we cant modify the elements of tuple like appending , deletimg.
@KalpsVlogs
@KalpsVlogs 4 жыл бұрын
@@sundeepsaradhi but override is possible ??
@RajatmohanSingh
@RajatmohanSingh 5 жыл бұрын
Very very thanku sir. Why We are creating empty tuple when we can not update it??
@nbd2651
@nbd2651 5 жыл бұрын
Si,plz teach what is CSV file ,use CSV file ,why import CSV file in python
@sandeepkumawat4982
@sandeepkumawat4982 4 жыл бұрын
make a video on creating tuple by user input
@johngtxgamer
@johngtxgamer 5 жыл бұрын
i want to explain amtrong method sir
@Crusader2
@Crusader2 4 жыл бұрын
sir are there any lectures yet to come in this play list
@aparnadeth3091
@aparnadeth3091 3 жыл бұрын
del(a) or del a?
@chinmaysurve3565
@chinmaysurve3565 3 жыл бұрын
Ty😭
@bhavanirathreddy4734
@bhavanirathreddy4734 4 жыл бұрын
Sir can u explain tuple packing and unpacking
@arjunsridhar3338
@arjunsridhar3338 4 жыл бұрын
How can a tuple be mutated ??
@Udit_Chodhary56
@Udit_Chodhary56 5 жыл бұрын
Ty sir
@darlingdendeep9108
@darlingdendeep9108 2 жыл бұрын
we can access tuple element like a[0] it gives first element unlike u u said..
@Srigowda043
@Srigowda043 5 жыл бұрын
sir can we assign the string as an element to a tuple
@anshulvyas23
@anshulvyas23 4 жыл бұрын
The values stored in a tuple can be any type, and they are indexed by integers.
@suso5024
@suso5024 2 жыл бұрын
Write a program to take a tuple from the user and insert all the odd elements from this tuple into a list. sir please solve this 🙏
@aravindm8429
@aravindm8429 4 жыл бұрын
text book shows tuple are mutable and list are immutable.
@IT_Podcaster
@IT_Podcaster 3 жыл бұрын
Ha ha that's incorrect. Tuples cannot be modified hence immutable.
@arjunsridhar3338
@arjunsridhar3338 4 жыл бұрын
Tuple unlike lists are not mutable
@kashitour
@kashitour 2 жыл бұрын
Delete tuple entire list. [1,2,3,4,5]. I want tuple a[3] Delete list cannot change,some I just Delete one value .this is Delete entire tuple del ..
@sagarsinghvlogs6138
@sagarsinghvlogs6138 4 жыл бұрын
Sir why u say comma as a camma
@mohanamanikandan4339
@mohanamanikandan4339 5 жыл бұрын
Can a tuple contain infinity elements...??
BASIC OPERATIONS ON TUPLES - PYTHON PROGRAMMING
12:25
Sundeep Saradhi Kanthety
Рет қаралды 45 М.
DICTIONARIES (CREATION AND ACCESSING) - PYTHON PROGRAMMING
20:54
Sundeep Saradhi Kanthety
Рет қаралды 76 М.
Don’t Choose The Wrong Box 😱
00:41
Topper Guild
Рет қаралды 57 МЛН
Мясо вегана? 🧐 @Whatthefshow
01:01
История одного вокалиста
Рет қаралды 7 МЛН
Pydantic Tutorial • Solving Python's Biggest Problem
11:07
pixegami
Рет қаралды 292 М.
Python lists, sets, and tuples explained 🍍
15:06
Bro Code
Рет қаралды 331 М.
TYPES OF ARGUMENTS IN FUNCTIONS - PYTHON PROGRAMMING
20:56
Sundeep Saradhi Kanthety
Рет қаралды 119 М.
Python Tutorial: Working with JSON Data using the json Module
20:34
Corey Schafer
Рет қаралды 1,1 МЛН
READING & WRITING DATA INTO FILES - PYTHON PROGRAMMING
18:50
Sundeep Saradhi Kanthety
Рет қаралды 91 М.
OOPS CONCEPTS | OBJECT ORIENTED PROGRAMMING CONCEPTS IN PYTHON PROGRAMMING
22:24
Sundeep Saradhi Kanthety
Рет қаралды 235 М.
INTRODUCTION TO LISTS AND CREATING LISTS - PYTHON PROGRAMMING
12:06
Sundeep Saradhi Kanthety
Рет қаралды 96 М.
FILES (OPEN,CLOSE,ACCESS MODES) - PYTHON PROGRAMMING
22:59
Sundeep Saradhi Kanthety
Рет қаралды 132 М.
Python OOP Tutorial 4: Inheritance - Creating Subclasses
19:40
Corey Schafer
Рет қаралды 1,3 МЛН
Tuples in Python | Python Tutorials for Beginners #lec40
20:56
Jenny's Lectures CS IT
Рет қаралды 111 М.
Don’t Choose The Wrong Box 😱
00:41
Topper Guild
Рет қаралды 57 МЛН