Difference Between List and Tuple in Python | Python Interview Questions and Answers | List vs Tuple

  Рет қаралды 64,916

Code-yug

Code-yug

Күн бұрын

Пікірлер: 97
@Codeyug
@Codeyug 2 жыл бұрын
We can unpack list also.
@barsaprusty4939
@barsaprusty4939 2 жыл бұрын
I was just going to scold u black and blue for that🤣
@Dabber7
@Dabber7 2 жыл бұрын
a,b,c,d=[21,32,93,'hello',5] print(c) a,b,c,d='ABC',21,32,93,'hello',5 print(c) I am facing the same issue for both
@barsaprusty4939
@barsaprusty4939 2 жыл бұрын
@@Dabber7 thats what happens.. we can unpack list too... not everyone who teaches in youTube is correct all the time...
@sagarmasal1242
@sagarmasal1242 Жыл бұрын
yes its correct it is possible to unpack list also. list and tuple both we can do packing and unpacking
@luckyrajput2642
@luckyrajput2642 10 ай бұрын
What is meant by pack/unpack ? 😅😅
@parthdange755
@parthdange755 Жыл бұрын
i dont usually comment on youtube but man what a great teaching every line with example...subscibing you
@Codeyug
@Codeyug Жыл бұрын
Thanks and please do share..
@Indian-foody-traveller
@Indian-foody-traveller 2 жыл бұрын
Very nice thankyou so much it was realy different from others video
@Codeyug
@Codeyug 2 жыл бұрын
Thank you.. Please share with friends..
@sumantwankhede
@sumantwankhede 2 жыл бұрын
Nice vdo..we can do comprehension of tuple by using its type print(tuple(i*2 for i in range(2)) ) # Tuple (0, 2) print({i:i*2 for i in range(2)} ) # dict {0: 0, 1: 2} l = [2,4,6] print ([i*2 for i in l if i > 1] )# List [4, 8, 12] print({i*2 for i in l if i > 1 }) # set {8, 4, 12}
@Codeyug
@Codeyug 2 жыл бұрын
But, actually it is generator and not comprehension.. Please check type here...
@MahbubAlam-ey7nz
@MahbubAlam-ey7nz 2 жыл бұрын
out of the world explanation
@Codeyug
@Codeyug 2 жыл бұрын
Keep learning
@fabeezsm7056
@fabeezsm7056 Жыл бұрын
we can unpack list and tuples . when i tried for output both came without error. i was wondering what am i wrong or my computer is
@gaurav6997
@gaurav6997 Жыл бұрын
Your explanation is amazing
@Codeyug
@Codeyug Жыл бұрын
Thanks and check playlists please
@shyamkaladlagopal2
@shyamkaladlagopal2 Жыл бұрын
well explanation sir....
@Rahul_Patil_11
@Rahul_Patil_11 Жыл бұрын
Kaash aapkee jaisa sir hamare college m hota🥹🙂
@vintagex4350
@vintagex4350 2 жыл бұрын
Your teaching techniques is too good
@Codeyug
@Codeyug 2 жыл бұрын
Thanks a lot
@johnsnow007
@johnsnow007 2 жыл бұрын
Thank you so much darling 💓
@jobsenclave9991
@jobsenclave9991 2 жыл бұрын
Superb video. Very informative.
@Codeyug
@Codeyug 2 жыл бұрын
Thanks... Keep going
@shubhangimahajan5089
@shubhangimahajan5089 2 жыл бұрын
Very clear explanation Sir👍
@Codeyug
@Codeyug 2 жыл бұрын
Thanks
@VishalDubey-oi3rq
@VishalDubey-oi3rq 2 жыл бұрын
nyc but we can unpack list also.. try it guys as same as tuple
@divyrajverma8286
@divyrajverma8286 Жыл бұрын
हर हर महादेव जय माँ भवानी जय श्रीराम जय माँ सीता जय हनुमानजी 🙏🙏🙏🙏🙏❤❤❤❤❤❤❤❤🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩
@gautamagarwal9761
@gautamagarwal9761 2 жыл бұрын
Best video 🙌
@Codeyug
@Codeyug 2 жыл бұрын
Thank you and keep going..
@williamjayaraj2244
@williamjayaraj2244 2 жыл бұрын
Good explanation. Thanks.
@Codeyug
@Codeyug 2 жыл бұрын
Keep going.. 👍
@p.krajput0601
@p.krajput0601 2 жыл бұрын
Great 👍❤️
@Codeyug
@Codeyug 2 жыл бұрын
Keep going bro..
@shubhpatil18
@shubhpatil18 2 жыл бұрын
Nace presentation brother appreciate
@Codeyug
@Codeyug 2 жыл бұрын
Keep watching and keep learning
@pareshranjanrout9439
@pareshranjanrout9439 Жыл бұрын
❤ Thank you Bhai
@Codeyug
@Codeyug 11 ай бұрын
Please check playlist section of this channel
@nileshsinha957
@nileshsinha957 Жыл бұрын
unpacking can be happen in list
@AyeshaKhan-sj5eb
@AyeshaKhan-sj5eb 2 жыл бұрын
It is very good👍
@Codeyug
@Codeyug 2 жыл бұрын
Thank you and keep learning
@riyasaxena5210
@riyasaxena5210 Жыл бұрын
Thanks 👍😊
@sudip_pandit
@sudip_pandit 2 жыл бұрын
thank you sir
@Codeyug
@Codeyug 2 жыл бұрын
Check playlists..
@InfotechSuraj
@InfotechSuraj 2 жыл бұрын
Amazing🙏
@Codeyug
@Codeyug 2 жыл бұрын
Thank you so much.. Keep learning from my channel. There are number of playlists
@a.agaming097
@a.agaming097 Жыл бұрын
At 6:53 you didn't provide parenthesis for tuple, then how can you define that tuple can be unpacked. I understand that the output will be the same but I am just trying to indicate your mistake.
@Codeyug
@Codeyug Жыл бұрын
var1, var2, var3 = 10,20,30 is unpacking of tuple. I don't think there is a mistake.
@earth_1943
@earth_1943 2 жыл бұрын
We can unpack list like tuple I am able to do it .
@ComedyAlexa
@ComedyAlexa Ай бұрын
Aaj Mera name esme example liya 😅😊😢😊
@KartikPandeyVlogs
@KartikPandeyVlogs 2 жыл бұрын
I was thinking packing n unpacking is able in list
@Codeyug
@Codeyug 2 жыл бұрын
Now, it's cleared... Right?
@KartikPandeyVlogs
@KartikPandeyVlogs 2 жыл бұрын
@@Codeyug yes and this ques was in my exam yesterday thanks ❤
@ravijeetsingh5135
@ravijeetsingh5135 Жыл бұрын
Nice
@kshitijpatil4133
@kshitijpatil4133 Жыл бұрын
sir, which software are you using for code in this video
@Codeyug
@Codeyug Жыл бұрын
Vscode
@shrikantgedam2900
@shrikantgedam2900 10 ай бұрын
i tried unpacking with list as you said and it works.... how it is possible j, k, l, m, = [1, 5.4, 'abc', 2+3j] print(j) print(k) print(l) print(m)
@Codeyug
@Codeyug 10 ай бұрын
Working is changed into new version. I have also commented in the same video and pinned it
@gajananchapole1607
@gajananchapole1607 2 жыл бұрын
Very nice
@Codeyug
@Codeyug 2 жыл бұрын
Thanks...you can learn python from this channel
@vintagex4350
@vintagex4350 2 жыл бұрын
Osm brother
@Codeyug
@Codeyug 2 жыл бұрын
Thanks 🤗
@YUGBHARWAJ
@YUGBHARWAJ 3 ай бұрын
Item ❌️ Atom ✅️
@naikajay_
@naikajay_ 2 ай бұрын
7:36 is it the wrong you have said at this point, tupple can be modify, and list provide more security to data
@samrat.02
@samrat.02 2 жыл бұрын
Good expl
@Codeyug
@Codeyug 2 жыл бұрын
Thanks
@samrat.02
@samrat.02 2 жыл бұрын
Hi bro if vs for loops plz 🙏 explan
@engineeringlife5391
@engineeringlife5391 2 жыл бұрын
But Maine list ke liye try kiya . Replit(online) pe . Unpacking ho raha hai . Pls help
@Codeyug
@Codeyug 2 жыл бұрын
Unpack hota hai... It depends on version I guess.. Comments check kro.
@yashanksaini3694
@yashanksaini3694 8 ай бұрын
L = ['hello' , 23 , 30 , 'ram'] a,b,c,d = L print (b) unpacking ho rhi h
@Codeyug
@Codeyug 8 ай бұрын
Yess... Please check my comment below the video
@ComedyAlexa
@ComedyAlexa Ай бұрын
Why? Sir number 4 topic?
@skchannel2088
@skchannel2088 Жыл бұрын
Modification kelye list chahea ya tuple?
@Codeyug
@Codeyug Жыл бұрын
List
@sangeetadubey1589
@sangeetadubey1589 2 ай бұрын
😊❤❤❤
@johnmartin9329
@johnmartin9329 2 жыл бұрын
aa,ba,ca,da=[1,5,3,4] print(aa,ba,ca,da) a,b,c,d=(1,2,4,5) print(a,b,c,d) both are giving same result in python 3.0 why
@Codeyug
@Codeyug 2 жыл бұрын
Sorry, we can unpack tuple.. I guess, I did mistake.
@Chinmoy348
@Chinmoy348 3 жыл бұрын
Nice video bro
@Codeyug
@Codeyug 3 жыл бұрын
Thank you.. If Anything required, text me..
@Chinmoy348
@Chinmoy348 3 жыл бұрын
@@Codeyug sure bro
@ramuyanamala1253
@ramuyanamala1253 6 ай бұрын
packin and unpacking is supporting list
@samrat.02
@samrat.02 2 жыл бұрын
Hi bro oops in python explan 😊😊plz
@Codeyug
@Codeyug 2 жыл бұрын
Full playlist hai bro..
@samrat.02
@samrat.02 2 жыл бұрын
Thank you bro
@Codeyug
@Codeyug 2 жыл бұрын
Mila kya?
@samrat.02
@samrat.02 2 жыл бұрын
@@Codeyug yes bro mil gaya thank you bro
@Codeyug
@Codeyug 2 жыл бұрын
@@samrat.02 'oop using python codeyug' esse bhi mil jayega
@atharvakulkarni4133
@atharvakulkarni4133 Ай бұрын
One correction: List also supports unpacking :)
@KrunalDurne
@KrunalDurne 6 ай бұрын
U were wrong coz Unpacking is possible with list
@sanjaytakecare80
@sanjaytakecare80 2 ай бұрын
Last difference is wrong
@Codeyug
@Codeyug 2 ай бұрын
Yess..sorry for that
@Mykiti271
@Mykiti271 2 жыл бұрын
Bro plzz muj se insta pr rbta kren ya whatsapp prr muje python K bary mein ap se jan kari leni ha
@Codeyug
@Codeyug 2 жыл бұрын
Please ask here
@prabinasunani4021
@prabinasunani4021 Жыл бұрын
Thank you sir
@Codeyug
@Codeyug Жыл бұрын
Welcome
@shaikmuheeb5526
@shaikmuheeb5526 Жыл бұрын
Nice
@Codeyug
@Codeyug Жыл бұрын
Thanks
Ful Video ☝🏻☝🏻☝🏻
1:01
Arkeolog
Рет қаралды 14 МЛН
#behindthescenes @CrissaJackson
0:11
Happy Kelli
Рет қаралды 27 МЛН
Жездуха 41-серия
36:26
Million Show
Рет қаралды 5 МЛН
GIANT Gummy Worm #shorts
0:42
Mr DegrEE
Рет қаралды 152 МЛН
Python lists, sets, and tuples explained 🍍
15:06
Bro Code
Рет қаралды 353 М.
List And Tuple | Data Structures | Python Tutorials
6:52
Amulya's Academy
Рет қаралды 192 М.
Python Lists vs Tuples: Their Differences Explained in 5 Minutes
5:13
Coding with Estefania
Рет қаралды 18 М.
AsyncIO, await, and async - Concurrency in Python
9:12
Socratica
Рет қаралды 119 М.
Difference between list, tuple, set, and dictionary in python
8:49
CS Electrical And Electronics (Chetan Shidling)
Рет қаралды 71 М.
The Absolute Best Intro to Monads For Software Engineers
15:12
Studying With Alex
Рет қаралды 680 М.
Ful Video ☝🏻☝🏻☝🏻
1:01
Arkeolog
Рет қаралды 14 МЛН