4 lines
57 B
Python
4 lines
57 B
Python
a = {1, 2}
|
|
b = {"a":1, "b":2}
|
|
print(type(a), type(b))
|
a = {1, 2}
|
|
b = {"a":1, "b":2}
|
|
print(type(a), type(b))
|