j
k
j a
j l
On Sun, Dec 06, 2020 at 11:25:33AM -0500, David Feuer wrote:
The name pop makes me think of a stack. Is this use of the word common?
Python uses that name, which is why I'm familiar with it:
......d = {'a': 1, 'b': 2} d.pop('b') 2 d {'a': 1}
...d = {'a': 1, 'b': 2} d.pop('b') 2 d {'a': 1}
d = {'a': 1, 'b': 2} d.pop('b') 2 d {'a': 1}
Back to the thread
Back to the list