Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

how to check if a variable exists in python

#if the variable is local: 
if 'myVar' in locals():
  # myVar exists

#if the variable is global:
if 'myVar' in globals():
  # myVar exists.
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #check #variable #exists #python
ADD COMMENT
Topic
Name
8+3 =