Shallow Copy Vs Deep Copy in Python

Поділитися
Вставка
  • Опубліковано 18 гру 2024

КОМЕНТАРІ • 87

  • @asimgiri4269
    @asimgiri4269 3 роки тому +12

    I'm just a beginner to Python but still it was soo clear to me. Thank You for explaining it soo easily

  • @helpingprogramming134
    @helpingprogramming134 3 роки тому +12

    Great Explanation now everything is clear, and we can also check reference no by using id(lst1) and id(lst2) it show the reference number. 🙂👍

  • @zahidakitchentreats9719
    @zahidakitchentreats9719 3 роки тому +10

    Hello Krish, I think the whole concept relies on the following points.
    = -> in 1d or 2d creates an object of the same memory location. Changes reflect
    list.copy() in 1d -> copies the value into new object. Changes do not reflect
    list.copy() in 2d -> copies the object in a object into new object. Changes reflect
    copy.deepcopy and copy.copy() works for 2d only.
    copy.deepcopy() -> Creates new object and inserts copy of the objects. Changes do not reflect
    copy.copy() - > Creates new object and inserts the original objects. Changes reflect
    In short, we need to see if we are putting copy/original objects.

  • @saikrishnavadali05
    @saikrishnavadali05 3 роки тому +1

    One tutor explained this for 1.5 Hr. Understood nothing.. This video is much much better than that's guy's boring explanation.. Very clear and very helpful.. Learnt the essence in this 12 minutes

  • @dhairyadaga1725
    @dhairyadaga1725 3 роки тому +2

    Simple and Clear to the point .

  • @Ivan_e9812
    @Ivan_e9812 3 роки тому +11

    I feel you could have shown visuals on the memory allocation for the nested lists part.
    The whole point as I inferred from your video is that if you have a shallow copy it will allocate space in memory for two lists but the lists will be pointing to the same items, whereas if you do it with a deep copy then new objects will be created and that's why they will be independent like that. Am I right?
    I just think you didn't stress this point as well as you could have.

    • @DhavalAhir10
      @DhavalAhir10 Рік тому

      In Python 1000 Same List Create 1000 new Memory location... Python can't take risk with mutable objects.

  • @Sarah-re7cg
    @Sarah-re7cg 3 місяці тому

    This was very clear and concise, thank you so much!

  • @dashingagg1
    @dashingagg1 2 роки тому

    Thanks a lot bhai. ye shallow copy aur deepcopy ka concept hi smjh nai aa raha tha bht time se.

  • @SANJAYTYAGI-bk6tx
    @SANJAYTYAGI-bk6tx 5 днів тому

    A list is mutable which means we can change any element in it but it will refer to same memory location.With = sign both list refer to same memory location.With copy() both list refer to different memory location.With copy.deepy() both list as well as inside lists in them refer to different memory location.
    Simple rule if two list refer to different memory location even though they contain same element s ,they will not get affected by one another.

  • @gurubalavigneshnatarajan3817
    @gurubalavigneshnatarajan3817 10 місяців тому

    Great explanation, now I am clear with the topic of shallow and deep copy . Thank you so much 🙏

  • @Negi171
    @Negi171 4 місяці тому

    This is what I understand :
    (If we create a nested list and make a shallow copy of it , and then we change the original list then the shallow copy list will not be changed but if we change the object that is inside the original list's list that is referring to the shallow copy then the change will also be reflected in shallow copy )

  • @ascutecoupleslove
    @ascutecoupleslove 4 місяці тому

    Thanks for the explanation..you really emphasised on the point it needed the most!

  • @yogeerao9149
    @yogeerao9149 2 роки тому

    previous i just ignore this topic because i thought it was big and complicated but i understand how simple this.. Thank You Bro :-)

  • @ShubhamKumar-xt3vi
    @ShubhamKumar-xt3vi 2 роки тому

    You made it very easy to understand.

  • @noco04TheGamer
    @noco04TheGamer Рік тому

    Thank you for explaining it so easily!

  • @mdhasnat8395
    @mdhasnat8395 2 роки тому

    The explanation was vary clear. Thank you so much for your time.

  • @madhavithorvat6803
    @madhavithorvat6803 7 місяців тому

    Thank you.. Your explanation is so clear and understandable

  • @bhaskarg8438
    @bhaskarg8438 3 роки тому

    Your are Great !! helping the community

  • @malikhaider9084
    @malikhaider9084 4 місяці тому

    love uh this is the main concept which i wanna get thank uh thank uh soo much

  • @raneshmitra8156
    @raneshmitra8156 3 роки тому

    Fabulous explanation of a very complicated topic of Python....

  • @chillmathematician3303
    @chillmathematician3303 3 роки тому +18

    this 12 minutes is better than 2 hours lecturer

  • @anchalpatel10
    @anchalpatel10 2 роки тому +1

    well explained!!

  • @awkashi
    @awkashi 2 роки тому

    so helpful and clear! thank you :)

  • @235orel
    @235orel 3 роки тому

    Very helpful and clear! thanks!!

  • @nikhilkothiyal
    @nikhilkothiyal 8 місяців тому +1

    Sir can we call the copy (using assignment operator),a shallow copy

  • @ezzsnippet125
    @ezzsnippet125 5 місяців тому

    Nice explanation sir

  • @ravindraprasad2264
    @ravindraprasad2264 Місяць тому

    Thanks for ther vedio, it was very clear.

  • @yuvarajpanneerselvam7644
    @yuvarajpanneerselvam7644 Рік тому

    i ma mechanical engineer but watching this i can clearly understand excellent way of teaching

  • @adityamathur2284
    @adityamathur2284 3 роки тому

    Very nice explanation, I was confused but this video helps a lot! Thanks😊

  • @sojwalgosavi4406
    @sojwalgosavi4406 2 роки тому +1

    print("Very well explained...")

  • @hakimeghaffari7889
    @hakimeghaffari7889 3 роки тому

    Very well explained. Thank you...

  • @osmanmerdan1169
    @osmanmerdan1169 2 роки тому

    Thank s for this great explaination

  • @faizanwar_
    @faizanwar_ 2 роки тому

    Very well explanated

  • @samialvi4226
    @samialvi4226 2 роки тому

    Great explanation
    Thanks

  • @shailajadavangave45
    @shailajadavangave45 2 роки тому

    Thank you so much well easily explaiend

  • @PythonCareerCoach
    @PythonCareerCoach 3 роки тому

    Thank you so much!
    Very well explained

  • @ranvirpoddar6710
    @ranvirpoddar6710 2 роки тому

    Thank you so much, you saved me several hours 🤗

  • @ZahidHasan-cc8tf
    @ZahidHasan-cc8tf 3 роки тому +3

    Sir, could you please do complete nosql course series from intermediate to advanced?

  • @abdelrhmandameen2215
    @abdelrhmandameen2215 3 роки тому

    Great explanation. Thanks.

  • @AshisRaj
    @AshisRaj 3 роки тому

    Excellent explanation

  • @Gayathri-i5p
    @Gayathri-i5p 5 місяців тому

    Summary:
    1a) Deep copy: multiple 1 to 1 relationships from variable to memory.
    1b) Shallow Copy: many-to-one relationships from variables to memory.
    2) In a normal list, shallow copy behaves as deep copy whereas in a nested list, shallow copy doesn't behave as deep copy.

  • @NoureddinePALESTINE
    @NoureddinePALESTINE 2 роки тому

    Thank you so much this was a very good explanation

  • @diegobarrientos6271
    @diegobarrientos6271 3 роки тому

    thanks!, very clear explanation

  • @-Me-yl2ou
    @-Me-yl2ou 3 роки тому

    Started learning python today ✌️

  • @mayflowerlily5326
    @mayflowerlily5326 3 роки тому +1

    Hi Krish your channel is very helpful for all DS aspirants like me. Request you to make a video on the system configurations needed for deep learning projects and is it better to buy system or assemble myself as buying a laptop is out of my budget. I am looking to buy a system for my deep.learning projects. Thank you

  • @darshanapatil9218
    @darshanapatil9218 3 роки тому

    excellent explanation!!!

  • @gtsui87
    @gtsui87 2 роки тому

    This was a great explanation it was very clear. However, is it possible to add an example of when you would use either shallow copy or deep copy. I'm not sure when these things would get used.

    • @Muhammed_English314
      @Muhammed_English314 2 роки тому

      I had a nested list which I wanted to copy using "=" and it didn't work, so deep copy is useful, however I can also make a loop that does the same thing

  • @kolla_teja
    @kolla_teja 3 роки тому

    very great series thank you sir

  • @mohseneb.6263
    @mohseneb.6263 2 роки тому

    So Helpful!

  • @kunchalaharikrishna6316
    @kunchalaharikrishna6316 2 роки тому

    👏👏TYSM

  • @ravimody5536
    @ravimody5536 2 роки тому

    Does this even apply to dataframes?

  • @puspitasahoo3420
    @puspitasahoo3420 3 роки тому +1

    7:23

  • @carforyou6573
    @carforyou6573 3 роки тому +1

    thank you, sir

  • @devrajbhattacharya7912
    @devrajbhattacharya7912 2 роки тому

    THANKS A LOT SIR

  • @Muhammed_English314
    @Muhammed_English314 2 роки тому

    I always thought python had "deep copy" set by default since it worked with non iterables but then I encountered a strange bug which brought me here

  • @riz_ahmeds
    @riz_ahmeds 5 місяців тому

    Really helpful,

  • @mayursai7220
    @mayursai7220 3 роки тому

    Bro please explain how to change my career path into cloud computing
    Currently i am working as uxdesigner
    Please do a video on that 🙏🙏

  • @dineshkannan7580
    @dineshkannan7580 3 роки тому

    Can I use .copy(deep=True) for deep copy

  • @soumyaranjansethi1790
    @soumyaranjansethi1790 3 роки тому

    Amazing thank you

  • @shadow_self8564
    @shadow_self8564 3 роки тому

    Thanks a lot!

  • @nishanthgajjala5282
    @nishanthgajjala5282 3 роки тому

    Hello Sir, if we want to reach out for you how do we reach

  • @chetanmarane2514
    @chetanmarane2514 2 роки тому

    What is difference between deep copy and =

    • @malikhaider9084
      @malikhaider9084 4 місяці тому

      (=) simply referred the memory location
      (copy) make a new memory of item but

  • @surajprajapati3447
    @surajprajapati3447 3 роки тому

    Sir can you make video on business analytics

  • @NandWebDev
    @NandWebDev 3 роки тому

    Sir plz do a multithread concepts in python

  • @sanjayjattinagoudar2481
    @sanjayjattinagoudar2481 3 роки тому

    @Krish Too may ads in the vedio is spoiling the flow

  • @tejasj5485
    @tejasj5485 6 місяців тому

    concept ok. but whats the use of it ?

  • @akhilsartnation9262
    @akhilsartnation9262 3 роки тому

    maza aagaya bhai

  • @rohitpant6473
    @rohitpant6473 2 роки тому

    keep it up

  • @vrindavaneshwari_ju_ki_kripa
    @vrindavaneshwari_ju_ki_kripa 3 роки тому

    Ty bhaiya

  • @manishsrivastav4897
    @manishsrivastav4897 2 роки тому

    bhai jo jis doubt ko le k aaega wo waisa ka waisa he reh jaega iss video me

  • @tiberius1921
    @tiberius1921 3 роки тому

    Спасибо!

  • @tashinahamed7822
    @tashinahamed7822 3 роки тому

    I've blundered 3 hours why list have changed automatically before watching this video

  • @abcdeftanutanu2187
    @abcdeftanutanu2187 3 роки тому

    nice

  • @cagataytekin6372
    @cagataytekin6372 Рік тому

    buyuksun hoca

  • @nandinikose1414
    @nandinikose1414 2 роки тому

    👾😁👍

  • @surendra_tarai
    @surendra_tarai Рік тому

    It can be explained in better way.

  • @sudharsanb9391
    @sudharsanb9391 3 роки тому +2

    First

  • @AbhishekJha-wm5oq
    @AbhishekJha-wm5oq 3 роки тому

    Full confused

  • @puspitasahoo3420
    @puspitasahoo3420 3 роки тому

    8:58