Let's say I have a string like this.
string = "someString"
I now want to create a new instance of say, a dict() object using the variable stored in string. Can I do this?
string = dict()
Hoping it becomes "someString = dict()"
. Is this right? If not, how do i do it? Still learning python. Any help would be greatly appreciated.