This is my python dict:
my_dict={
"key":{
"outbound_email_detail":{
"from":"value"
}
}
}
Here is my input String :
input="key#outbound_email_detail#from"
How could I parse my input to access python dict. I tried with the split but not sure how to assemble it back ?
Expected Output is :
print(my_dict["key"]["outbound_email_detail"]["from"])