Id of Variables in Python | Mutable and Immutable Objects

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024
  • 💻 Get my Source Codes and support the channel ❤️: www.buymeacoff...
    ⬇️ LEARN ON THE BEST LEARNING PLATFORMS (LINKS BELOW) 😉💪 ⬇️
    ☕ Buy me a coffee: www.buymeacoff...
    😍 One-off donation: www.paypal.me/...
    SKILLSHARE
    (Python, Web Dev, UI/UX Design, Music, Art, Animation and a lot more)
    🔗 skillshare.eqc... (Affiliate)
    DATACAMP
    (Python, ChatGPT, SQL, Power BI, and a lot more)
    🔗 datacamp.pxf.i... (Affiliate)
    COURSERA PYTHON
    (For beginners, Data Science, Data Analysis, AI, Cybersecurity and a lot more):
    🔗 imp.i384100.ne... (Affiliate)
    COURSERA WEB DEVELOPMENT
    (Full Stack, Front-End, Back-End, Web Design and a lot more):
    🔗 imp.i384100.ne... (Affiliate)
    Learn the difference between mutable and immutable objects in Python by learning what a variable is and how to use the id() function to get the object's memory address.
    If the video was helpful, let me know in the comments down below and also like the video so that other people can see it. Needles to say I really appreciate your support 💪❤️
    📨 SUBSCRIBE so that you don't miss any new video:
    www.youtube.co...
    🤗 BIO PAGE (contacts, etc): solo.to/fabiom...
    Create Your Bio Page (10% OFF Upgraded Plans 😉): solo.to/inv/ND...
    🔗 RELATED CONTENT (videos, playlists, etc) 🔗
    Python Playlist: • 🐍 Learn Python With Fa...
    🤩 AFFILIATE LINKS 🤩
    Create Your Bio Page (10% OFF Upgraded Plans): solo.to/inv/ND...
    🧑🏻‍💻 ABOUT ME 🧑🏻‍💻
    I'm Fabio, I started programming with Python a lot of years ago and I fell in love with this world.
    I started this RUclips channel to help you during your own journey and I hope that my help can make you an amazing programmer who loves this world as I do.
    Welcome on board!! 🚀
    #pythonWithFabioMusanni #pythonforbeginners #python #pythontutorial #pythonprogramming #coding #programming

Комментарии • 8

  • @FabioMusanni
    @FabioMusanni  Год назад +1

    ⬇️ *LEARN ON THE BEST LEARNING PLATFORMS (LINKS BELOW)* 😉💪 ⬇️
    ☕ *Buy me a coffee:* www.buymeacoffee.com/fabiomusanni
    ❤️ *Support me monthly:* www.patreon.com/FabioMusanni
    😍 *One-off donation:* www.paypal.me/FabioMusanni/
    *SKILLSHARE*
    _(Python, Web Dev, UI/UX Design, Music, Art, Animation and a lot more)_
    🔗 skillshare.eqcm.net/5gxzD2 (Affiliate)
    *DATACAMP*
    _(Python, ChatGPT, SQL, Power BI, and a lot more)_
    🔗 datacamp.pxf.io/vN1bDj (Affiliate)
    *COURSERA PYTHON*
    _(For beginners, Data Science, Data Analysis, AI, Cybersecurity and a lot more):_
    🔗 imp.i384100.net/k0Nk60 (Affiliate)
    *COURSERA WEB DEVELOPMENT*
    _(Full Stack, Front-End, Back-End, Web Design and a lot more):_
    🔗 imp.i384100.net/EKWxBW (Affiliate)
    Thank you for the support!❤
    🎥All my videos about Python: ruclips.net/p/PLs8qUrmRvaR0IT4IwJl-LSweAdACW-yLK

  • @amarmusovic7748
    @amarmusovic7748 3 месяца назад +1

    Good stuff. Your account deserves way more followers... 🙃

  • @lloyd_talks
    @lloyd_talks 7 месяцев назад +1

    Great explanation!

  • @kanekiken7091
    @kanekiken7091 4 месяца назад

    thank you for this

  • @li0770
    @li0770 Год назад

    At 3:02 you used the same variable name in the same scope. I don't understand how this is possible without the second my_tuple overriding the first

    • @FabioMusanni
      @FabioMusanni  Год назад

      Hello 😊
      It actually overrides the first one, or rather, you are assigning a new value to the same variable. The id changes because you are not modifying the same object (you are not adding the 4 to the first tuple) but Python creates a completely new object with a new id, the other object (first tuple) is sort of forgotten and the new object (second tuple) is assigned to the variable and that's why you get a different id, because it's the id of the new object. I hope that makes sense 😉

    • @li0770
      @li0770 Год назад

      @@FabioMusanni Thank you for the detailed explanation

    • @FabioMusanni
      @FabioMusanni  Год назад

      @@li0770 No worries! Glad it helped 😊😉