python check if value exists code example
Example 1: how to check if var exists python
# for local
if 'myVar' in locals():
# myVar exists.
# for globals
if 'myVar' in globals():
# myVar exists.
Example 2: how to check an array for a value in python
s = set(a)
if 7 in s:
# do stuff