If I have JSON something like: ``` json { "myval": null } ``` then accessing "myval" returns None but accessing "myvalX" also returns None How can I distinguish the two cases? (I do not have control of the expressions, they are generated from user input)
If I have JSON something like:
{ "myval": null }then accessing "myval" returns None
but accessing "myvalX" also returns None
How can I distinguish the two cases? (I do not have control of the expressions, they are generated from user input)