What is the role of F in dict(E, **F)

A

Alex

Entering
Help on method_descriptor:

update(...)
D.update(E, **F) -> None. Update D from E and F: for k in E: D[k]
= E[k]
(if E has keys else: for (k, v) in E: D[k] = v) then: for k in F:
D[k] = F[k]

As I understand update() is used to merge two dictionaries, for example

But what is the role of **F?

Alex
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,444
Messages
2,571,709
Members
48,796
Latest member
Greg L.
Top