Quick actions

cmd+k|ctrl+k

Navigation

Languages

16/4/2024

Snippet info

Language

Python

Visibility

public

Author

wongchunhei20040624

Created

2024-04-16T01:46:51.165756Z

Updated

2024-04-16T04:49:09.424713Z

d1 = {'p':1,'y' :2}
d2 = {'t':3,'b':4}
d3 = {'c':5,'a':6,'l':7}
d = {**d1,**d2,**d3}
print(d1)
print(d2)
print(d3)
print(d)
INFO