>>a=input("Enter Variable Value: ")
123abc321zxc
>>b=input("Enter Variable Name: ")
xyz
Now i want xyz to be considered as variable name and 123abc321zxc as its value(value of 'a' to be assigned to value of b) so that i can get below result:
xyz="123abc321zxc"
NOTE: Use of database is not allowed. Its not a duplicate of any question. Please dont mark it duplicate
Please suggest