I have One String in python
field_name = "status"
value = "joined"
I want to convert this string to some variable name like,
status = "joined"
my Indention is Django ORM
model.objects.filter(status = 'joined')
Any Suggestion doing for this..
Here am reffered this URL Convert string to variable name in python
but here it happend only integer. not working string type of values any one help me