I saw a novel Python syntax,like this
test:[123,"abc"]
test:"123"
But is not a Assignment of variables.
print(test)
NameError Traceback (most recent call last) in ----> 1 print(test)
NameError: name 'test' is not defined
What does Python do in this step?