Constructing and Assigning a Python Object

แชร์
ฝัง
  • เผยแพร่เมื่อ 9 พ.ย. 2024

ความคิดเห็น • 11

  • @GlennBroadway
    @GlennBroadway 8 ปีที่แล้ว +8

    This series is fantastic. Thanks for your hard work John.

    • @johnphilipjones
      @johnphilipjones  8 ปีที่แล้ว +1

      +Glenn Broadway Thank you for your generous comments. It is appreciated.
      Best wishes
      Phil
      (John Philip Jones)

  • @ss-oq9pc
    @ss-oq9pc 7 ปีที่แล้ว +4

    Classes are starting to click for me thanks to you. I put a bunch of links to your website and channel in comments I made recommending you in some blog posts about programming I found. I hope you get some traffic out of them, you deserve it.

  • @jore354
    @jore354 2 ปีที่แล้ว +1

    Hands down the best python series I have come across in the past year. You have a deep understanding of the language and your ability to transfer that knowledge is superb. Nice job, John! I will recommend you to others.

    • @johnphilipjones
      @johnphilipjones  2 ปีที่แล้ว

      Thank you for your positive comments. It is appreciated. Best wishes and Happy New year
      Phil
      (John Philip Jones)

    • @jore354
      @jore354 2 ปีที่แล้ว

      @@johnphilipjones You are welcome! Happy New Year to you too, Phil.
      - Joe

  • @srb1855
    @srb1855 4 ปีที่แล้ว +1

    Simple and elegant conceptual model - really helps to reveal some of the subtleties of classes and objects.👍

  • @rorjackson
    @rorjackson 5 ปีที่แล้ว +3

    This is one of the best video series that has helped us alot in learning python. you are great sir.

  • @mikijasar2594
    @mikijasar2594 4 ปีที่แล้ว

    Dear Sir Jones, when you talk about "Execution Space" is it the computer's RAM or you mean HDD
    since if for the same object run the python program twice both times I get it
    different address ids for the same object. Thanks in advance
    and of course thank you for all your time investing in helping people learn Python

    • @johnphilipjones
      @johnphilipjones  4 ปีที่แล้ว

      The execution space is really a 'model' representing the computers memory. However, in the context of your question I would regard it as RAM. Every time you rerun the program it is often the case that a new id is generated because the operating system will place the program in a different area of the memory.
      Best wishes Phil