mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
13 lines
142 B
Python
13 lines
142 B
Python
list1 = ["a", "b",]
|
|
list2 = [
|
|
"a",
|
|
"b",
|
|
]
|
|
assert list1 == list2
|
|
|
|
dict1 = {"a": "b",}
|
|
dict2 = {
|
|
"a": "b",
|
|
}
|
|
#assert dict1 == dict2
|