A symbolic name is something that uniquely identifies a specific entry in a program or language. In python this would be a reference (giving the memory location) or pointer to a specific object. This can be an array, a variable, an object etc...
An assignment creates a symbolic name, that can be used to reference an object
s = "foo"
print(id(s))
To check the unique identifier, you simply call {python} id(x)