The Surprising Case Of Mutable Default Arguments | HackerNoon

Norge Nyheter Nyheter

The Surprising Case Of Mutable Default Arguments | HackerNoon
Norge Siste Nytt,Norge Overskrifter
  • 📰 hackernoon
  • ⏱ Reading Time:
  • 77 sec. here
  • 3 min. at publisher
  • 📊 Quality Score:
  • News: 34%
  • Publisher: 51%

'The Surprising Case Of Mutable Default Arguments' python pythonprogramming

We have a Python function that takes an argument that also has a default value assigned to it.>>> foo [1,2,3,4,5] >>> foo [1,2,3,4,5,6,5]

But, what happens when we do not pass any argument and prefer to go with the default argument..? Let's see it ourselves:Wasn't the output supposed to be a new list with justWhy is it that way..?or a mutable datatype i.e. it can be modified and that's what is happening here.Default arguments are bind to the function as soon as the function is definedTherefore, we have a single list associated with our function instead of a new list being created on each function call.

>>> def eggs: print executed') return [] >>> def foo): # as soon as you hit enter after the definition it outputs 'eggs executed' a.append return a eggs executed Now, that message right after the function definition was proof that default arguments get bind as soon as the function is defined.These are also treated the same way i.e. as mutable default arguments these too are bound to the function just after the definition ends.But, as these are immutable so we get the same results instead of modified once. Let's use the above code again:

>>> def eggs: print executed') return # this time we use a tuple instead as these are immutable >>> def foo): # as soon as you hit enter after the definition it outputs 'eggs executed' a += return a eggs executed >>> foo >>> foo You are now aware of default argument bindings to functions in Python so be careful, don't be amazed if you get a modified output instead of what you expected...

Vi har oppsummert denne nyheten slik at du kan lese den raskt. Er du interessert i nyhetene kan du lese hele teksten her. Les mer:

hackernoon /  🏆 532. in US

Norge Siste Nytt, Norge Overskrifter

Similar News:Du kan også lese nyheter som ligner på denne som vi har samlet inn fra andre nyhetskilder.

How to Find Minimum Viable Product-Market Fit (PMF) | HackerNoonHow to Find Minimum Viable Product-Market Fit (PMF) | HackerNoon'How to Find Minimum Viable Product-Market Fit (PMF)' by whizzzoe startups entrepreneurship
Les mer »

Linux Postfix-How to Add OpenDKIM to DNS | HackerNoonLinux Postfix-How to Add OpenDKIM to DNS | HackerNoonOutsourcing is the process of a company contracting with a third party to do a certain task. This post will show how these two elements can work together.
Les mer »

Handling Remote Team Personality Clashes: Think Like a Shrink | HackerNoonHandling Remote Team Personality Clashes: Think Like a Shrink | HackerNoon'Handling Remote Team Personality Clashes: Think Like a Shrink ' by ResponseCRMllc remote remoteworking
Les mer »

Why Asynchronous Communication is Important in Remote Work | HackerNoonWhy Asynchronous Communication is Important in Remote Work | HackerNoonIn this article, You will learn the benefits of asynchronous communication for remote workers.
Les mer »

Spend Zero Time on DevOps with Render PaaS | HackerNoonSpend Zero Time on DevOps with Render PaaS | HackerNoonCheck out how efficient it is to create a new API using Go, and then deploy it to the Render PaaS, both for the first time with zero DevOps.
Les mer »



Render Time: 2025-04-04 03:16:19