jeremy
(Jeremy Howard)
20
@bdubreu happy to answer your questions, but be sure to search the forums first! Here’s a great discussion from @radek about BypassNewMeta
And remember to use the help:
Or type merge??
to see the source:
def merge(*ds):
"Merge all dictionaries in `ds`"
return {k:v for d in ds if d is not None for k,v in d.items()}
1 Like