Cool Set Features No One Told You About In Python

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ม.ค. 2025

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

  • @maxweinstein1537
    @maxweinstein1537 12 ชั่วโมงที่ผ่านมา +1

    Thumbnail has a typo: symmetric difference and intersection should be swapped

  • @MateuszAdamowski-k8b
    @MateuszAdamowski-k8b 19 ชั่วโมงที่ผ่านมา +1

    Also:
    print(2 in a)
    to check if given element is present in a set

  • @watchmakerful
    @watchmakerful 17 ชั่วโมงที่ผ่านมา +1

    Are a -= b and a.difference_update(b) the same in terms of memory and CPU time?

    • @IonicMC
      @IonicMC 16 ชั่วโมงที่ผ่านมา +1

      ***I think***
      Both are turned to "CALL set.diffrence_update(a, b)" in byte code (not this, but just the same meaning)

  • @rondamon4408
    @rondamon4408 20 ชั่วโมงที่ผ่านมา +2

    a: set[str] = {"cool", "useful", "great" }

  • @ledinhthai69
    @ledinhthai69 20 ชั่วโมงที่ผ่านมา +1

    Oh my god! I saw your face now although I have listened to your lessons alot. Thanks for help

  • @samoylov1973
    @samoylov1973 18 ชั่วโมงที่ผ่านมา +1

    a |= b
    will update a, sort of
    a = (a | b)
    but in shorter form

  • @ivanheffner2587
    @ivanheffner2587 8 ชั่วโมงที่ผ่านมา

    The “syntactic sugar” operators make sense if you think about it in terms of bitwise operators. & is in both; ^ is in one or the other but not both; | is in either; AND, XOR, OR.

  • @saiednasiripour3522
    @saiednasiripour3522 7 ชั่วโมงที่ผ่านมา

  • @EndOfForever
    @EndOfForever 16 ชั่วโมงที่ผ่านมา

    Knowing this would have helped me in my Discrete Math class lol

  • @elizabethkirby1782
    @elizabethkirby1782 13 ชั่วโมงที่ผ่านมา

    Nice to see your face -- not important for the info, but nice just the same. :-). Also, thanks very much for the videos.

  • @CultureofSpeech
    @CultureofSpeech 19 ชั่วโมงที่ผ่านมา

    By the way, I'm looking forward your newt videos on "one liners" in python script.
    Kinda regards and respect.

  • @avxqt001
    @avxqt001 17 ชั่วโมงที่ผ่านมา

    importlib module (usecases)
    and __import__ function

  • @thetdg
    @thetdg 20 ชั่วโมงที่ผ่านมา +2

    In the thumbnail, ^ and & got interchanged

    • @Indently
      @Indently  11 ชั่วโมงที่ผ่านมา

      Thank you, I’ll fix it as soon as I get the chance!

  • @djtomoy
    @djtomoy 3 ชั่วโมงที่ผ่านมา

    wats a set?

  • @danielputter
    @danielputter 18 ชั่วโมงที่ผ่านมา +2

    Wdym no one told you about?