БГ
Size: a a a
YA
K
AT
d1 = {1: 'a', 2: 'b', 3: 'c'}
d2 = {3: 'a', 2: 'b', 1: 'c'}
print(*(d1 | d2).values())
E
d1 = {1: 'a', 2: 'b', 3: 'c'}
d2 = {3: 'a', 2: 'b', 1: 'c'}
print(*(d1 | d2).values())
БГ
py3
d1 = {1: 'a', 2: 'b', 3: 'c'}
d2 = {3: 'a', 2: 'b', 1: 'c'}
print(*(d1 | d2).values())
Traceback (most recent call last):
File "808387808/source.py", line 3, in <module>
print(*(d1 | d2).values())
TypeError: unsupported operand type(s) for |: 'dict' and 'dict'
БГ
py3
d1 = {1: 'a', 2: 'b', 3: 'c'}
d2 = {3: 'a', 2: 'b', 1: 'c'}
print(*(d1 | d2).values())
Traceback (most recent call last):
File "808387808/source.py", line 3, in <module>
print(*(d1 | d2).values())
TypeError: unsupported operand type(s) for |: 'dict' and 'dict'
E
py3
d1 = {1: 'a', 2: 'b', 3: 'c'}
d2 = {3: 'a', 2: 'b', 1: 'c'}
print(*(d1 | d2).values())
Traceback (most recent call last):
File "808387808/source.py", line 3, in <module>
print(*(d1 | d2).values())
TypeError: unsupported operand type(s) for |: 'dict' and 'dict'
E
БГ
E
БГ
БГ
E
<Ч
py3
d1 = {1: 'a', 2: 'b', 3: 'c'}
d2 = {3: 'a', 2: 'b', 1: 'c'}
print(*(d1 | d2).values())
Traceback (most recent call last):
File "808387808/source.py", line 3, in <module>
print(*(d1 | d2).values())
TypeError: unsupported operand type(s) for |: 'dict' and 'dict'
А
<Ч
<Ч
<Ч