New in Python 3.13: Replace

Поделиться
HTML-код
  • Опубликовано: 25 дек 2024

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

  • @michaelhoffmann2891
    @michaelhoffmann2891 Месяц назад +167

    The fact that it's shallow is something that I just *KNOW* will come to bite me. Generally when the caffeine has worn off and the brain is going into power-saving mode.

    • @prepsure_
      @prepsure_ Месяц назад +9

      i think the idea here is that your classes are immutable. replace only really useful in this case, it’s a functional construct, so shallow copying shouldn’t be an issue because the data won’t be mutable anyway

    • @XxZeldaxXXxLinkxX
      @XxZeldaxXXxLinkxX Месяц назад +4

      ​@@prepsure_yep you needed to have fucked up twice already if you're running into data consistency problems using immutable type classes 😂

  • @Libertarian1208
    @Libertarian1208 Месяц назад +71

    There is a method dataclasses.replace (in Python 3.12 at least) - for dataclasses copy.replace is not needed

    • @martinpayne2934
      @martinpayne2934 Месяц назад +10

      I think it has been around for as long as dataclasses have existed. It definitely exists in 3.10 anyway. But perhaps this more generalised version of replace is intended to replace (pun intended) the one in the dataclasses module.

    • @fyellin
      @fyellin Месяц назад +4

      There is also the method NamedTuple._replace. Does this new method do anything that can’t already be done?

    • @rustyguard1001
      @rustyguard1001 Месяц назад +19

      ​@@fyellinit bacically unifies all the different replace methods with introduction of __replace__

    • @PeterZaitcev
      @PeterZaitcev Месяц назад

      ​@@martinpayne2934 since 3.7

  • @ecaltroyer
    @ecaltroyer Месяц назад +55

    The RUclips algorithm has got you

  • @pharoah327
    @pharoah327 Месяц назад +20

    This is essentially the "with" keyword in C#. Glad to see Python getting this feature!

    • @ZelenoJabko
      @ZelenoJabko Месяц назад

      c# stole this feature from Scala.

    • @pharoah327
      @pharoah327 Месяц назад +13

      @ZelenoJabko languages "steal" from other languages all the time. It's nothing new. It's actually a very positive and healthy thing. Again, I'm glad to see Python "stealing" this feature as I think it can be very useful. I know I used C#'s version of it recently in a project and it was great.

    • @snesmocha
      @snesmocha Месяц назад

      @@ZelenoJabkoevery language steals from lisp 💀

    • @soniclettuce
      @soniclettuce Месяц назад +1

      @@ZelenoJabko and Scala stole it from OCaml

  • @krol_zeliwko
    @krol_zeliwko Месяц назад +6

    "what am I even saying" 😂😂😂

  • @23nine
    @23nine Месяц назад +20

    I didn't even know about dataclasses. Thanks.

  • @rusca8
    @rusca8 Месяц назад +14

    I mean. The dataclasses module itself already has a replace function that works like that.

  • @m4rcika
    @m4rcika Месяц назад +2

    Really clear and useful, thank you

  • @samuelpinzon8329
    @samuelpinzon8329 Месяц назад +6

    Python 3.13 has some good features, and I wanna learn it all!! But I still don't know most of the features of the past versions 😭😭😭😭

    • @ludovicbossard9577
      @ludovicbossard9577 29 дней назад

      We all have to start somewhere

    • @Imperial_Squid
      @Imperial_Squid 20 дней назад

      No coder knows every single feature of the languages they use, unless you're one of the people making it, it's not necessary.

  • @oida10000
    @oida10000 Месяц назад +1

    Is there an equivalent method for replace with deepcopy? Maybe deepreplace?

  • @adobko
    @adobko Месяц назад

    Amazing as always

  • @sohangchopra6478
    @sohangchopra6478 Месяц назад

    Nice feature!

  • @ezkymos
    @ezkymos Месяц назад +2

    What is the difference compared to using cup.copy(price=100) ?

  • @immortalsun
    @immortalsun Месяц назад

    Thanks for the video :)

  • @foxypiratecove37350
    @foxypiratecove37350 Месяц назад

    That's actually good.

  • @shafqatjanjua4879
    @shafqatjanjua4879 Месяц назад

    Keep going... [for other whatever topics]

  • @josejaimecome
    @josejaimecome Месяц назад +1

    Clear and Concise, that is why I always keep my self up to date with the new python release. But I try to not forget the old one as most of the code will be in old version.

  • @seanshimon
    @seanshimon Месяц назад

    Can you please show some Pytest examples and features, please.

  • @Dulinniel
    @Dulinniel Месяц назад +3

    Genuinely, why would you change the value of an immutable object in a first place ? I mean, isn't there any dynamic data structure in python ?

    • @JNSchneider
      @JNSchneider Месяц назад +7

      This is not for changing values of immutable objects, if you want a mutable dataclass for instance, you just don't set frozen to true. The use case for this method is when you want to create a second immutable object that is similar to the first but slightly different. Since the object is immutable, you cannot make a copy and change it. Replace helps you create a copy that is different in the keys that you specify but still the same in all other properties and also immutable.

  • @notanerd3141
    @notanerd3141 Месяц назад +4

    3:08 why use replace when you can just make a new instance?????

    • @joshix833
      @joshix833 Месяц назад +1

      It would be more useful if the class had many you want to keep the same

    • @buycraft911miner2
      @buycraft911miner2 Месяц назад

      its super useful if you decide everything to be inmutable​, which is common in functional programming

    • @stunnerr
      @stunnerr Месяц назад

      That's just an example, real dataclass could have more fields than that

  • @e-pluszak9419
    @e-pluszak9419 Месяц назад +3

    Price of type float, ouch 😳

    • @Indently
      @Indently  Месяц назад

      If your country doesn’t have coins you can always use an integer.

    • @e-pluszak9419
      @e-pluszak9419 Месяц назад +1

      @Indently yes, but if it does using floats is still insane due to rounding errors, Decimal class is the way to go

    • @yhtomit28
      @yhtomit28 Месяц назад

      ​@@e-pluszak9419 or another common trick with currency is to store it in terms of the smallest denomination and you always have a integer, e.g. for USD store an integer number of cents, or for GBP store an integer number of pence.

  • @ItsJoeyG
    @ItsJoeyG Месяц назад

    this is HUGE

  • @eternlyytc7300
    @eternlyytc7300 Месяц назад

    Thanks

  • @davidgillies620
    @davidgillies620 Месяц назад

    I want to use 3.13 but too many packages have dependency issues still (I use miniconda for data wranglingstuff).

  • @MrKerim2000
    @MrKerim2000 Месяц назад +16

    Should be called replaced instead of replace imo

    • @Omsip123
      @Omsip123 Месяц назад +4

      Hmmm, and copy would be copied? I think I see your point (which you did not explain), but I think replace is just fine as well.

    • @rubynaxela8524
      @rubynaxela8524 Месяц назад +2

      Yeah, I get it, it would be probably more consistent with functions like sorted() or reversed(). However that name could also suggest that we're somehow replacing the object itself, and not values of some of its fields, so perhaps a name like with_replaced() would be even more transparent. But I think that at this point everyone has learned that Python functions (global or static, not instance methods!!), by convention, never modify their arguments and return modified, new objects instead.

    • @pharoah327
      @pharoah327 Месяц назад +1

      ​@@rubynaxela8524always remember that new people are joining the field all the time and are learning Python for the first time. Consistency in naming is very important. Old hats will adapt but newbies will still be confused. Unfortunately I don't think Python language developers put near enough time into thinking about names and the inconsistency shows. So the distinction between replace and replaced or with_replaced is an important discussion that Python lang devs should have had.

  • @aømid-GT
    @aømid-GT Месяц назад +9

    Is it weird that I Watch these Python vids even tho I use Lua?

    • @outofmemind
      @outofmemind Месяц назад +5

      No, I mainly use rust

    • @MynameisBrianZX
      @MynameisBrianZX Месяц назад +2

      nah I am not in a profession nor do I ever desire to casually use a statically typed language, but I still watch videos about them because peeks at language design is still interesting. People love tourism shows even if they’ll never travel.

    • @MichaelWoodrum
      @MichaelWoodrum Месяц назад

      local myAnswer = setmetatable({}, {
      __tostring = function() return "yes" end
      })
      print(tostring(myAnswer))

    • @outofmemind
      @outofmemind Месяц назад

      The best thing about rust is converting strings to strings and u/isize to i32/64 and getting a panic error

  • @sectorgamma
    @sectorgamma Месяц назад

    So why isn't there a deep_replace the same way there is a deep_copy?

  • @EndermanAPM
    @EndermanAPM Месяц назад +3

    I like the feature, but don't really love the name. "replace" means replace, not "copy and replace". At least in my head.

    • @rubynaxela8524
      @rubynaxela8524 Месяц назад +1

      I've already answered another person who also didn't like the name, so I'll just copy my opinion here.
      A name like replaced() would be probably more consistent with functions like sorted() or reversed(). However that name could also suggest that we're somehow replacing the object itself, and not values of some of its fields, so perhaps a name like with_replaced() (or copy_and_replace()) would be even more transparent. But I think that at this point everyone has learned that Python functions (global or static, not instance methods!!), by convention, never modify their arguments and return modified, new objects instead, so there's probably no need for verbose names.

    • @chri-k
      @chri-k Месяц назад

      i would have called it new_from.
      but i also don't know anything about Python naming conventions.

  • @joeldick6871
    @joeldick6871 25 дней назад

    How about deepreplace?

  • @sseymour1978
    @sseymour1978 17 дней назад

    python 14 : deepreplace :D

  • @WondrousHello
    @WondrousHello Месяц назад

    I don’t understand what the real world use case for this would be

  • @dipeshsamrawat7957
    @dipeshsamrawat7957 Месяц назад

    Thank you 😊

  • @osamasrour4757
    @osamasrour4757 Месяц назад

    ❤❤❤❤

  • @fswerneck
    @fswerneck Месяц назад

    cool

  • @el_chivo99
    @el_chivo99 27 дней назад

    copy should be called shallowcopy and replace should have been some argument of shallowcopy, like a dictionary.

  • @lemonteurdesanuseur9686
    @lemonteurdesanuseur9686 Месяц назад

    Anyone knows in what case this might be useful ?

  • @SarcTiann
    @SarcTiann Месяц назад +2

    You might want to write `golden_cup = replace(deepcopy(cup), cost=100)`
    Or `... deepcopy(replace( ...`

  • @Kynatosh
    @Kynatosh Месяц назад

    I don't use python much but from those examples I don't see the difference of using NamedTuple and dataclasses, what's the difference?
    Edit ah dataclasses are mutable by default, frozen=true makes them immutable. What's the difference then

    • @DuncanBooth
      @DuncanBooth Месяц назад

      The fields in a named tuple may be accessed either by name or by index. Before named tuples existed functions such as os.stat() simply returned a ten element tuple. It still returns a ten element tuple for compatibility with old code but these days you wouldn't think of using anything but the named fields.
      Dataclasses are simply classes so they don't have any of the tuple baggage.

    • @Kynatosh
      @Kynatosh Месяц назад

      @@DuncanBooth So why would anyone use Frozen dataclasses if they are less permissive? I assume NamedTuples are faster too because c implementation and not dictionnary
      Edit:
      Actually, Maybe for typing it's good, because tuple NamedTuple1(x=1, y=2) == NamedTuple2(x=1, y=2)
      But Dataclass1(x=1, y=2) and Dataclass2(x=1, y=2) are different

    • @xbylina2641
      @xbylina2641 Месяц назад +1

      @@Kynatosh "Less permissive" doesn't mean "less usable" -- tuples are less permissive than lists and both have their uses.

    • @juanjosefarina
      @juanjosefarina Месяц назад

      @@Kynatosh Mutability may result in ugly bugs, and using less permissive structures is recommended for a similar reason. You want to make as restricted and deterministic as possible your code.

  • @this-is-bioman
    @this-is-bioman Месяц назад +5

    Naming a package just "copy" is pure evil.

  • @sa-hq8jk
    @sa-hq8jk Месяц назад

    kinda reminds me of Cell in Rust

  • @goid314
    @goid314 Месяц назад

    why can't we just do:
    point1 : Point = Point(x=1, y=1)
    point2 : Point = Point(x=5, y=1)
    ???

    • @juanjosefarina
      @juanjosefarina Месяц назад

      If your class is as simply as Point, sure. If your class is big and complex you can make a deepcopy() and then change whatever attribute you need, but replace is more readable I guess

  • @_lun4r_
    @_lun4r_ Месяц назад +1

    your IDE be like: I don't know what you mean

  • @Baldur1975
    @Baldur1975 Месяц назад

    Das ist verwirrend. warum nicht copy.replace?

    • @MrKerim2000
      @MrKerim2000 Месяц назад +1

      Einfach nur ein andere Art des imports?

    • @Baldur1975
      @Baldur1975 Месяц назад +1

      @@MrKerim2000 Ahh ok. replace wird ja von copy importiert und ist kein neues eigenes schlüsselwort. habe ich beim ersten schauen übersehen.
      Danke dir