Answers for "check if a variable exist python"

9

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.
Posted by: Guest on October-03-2020
-1

python check if variable has value

if x:
  print(x)
else:
  print(x is empty)
Posted by: Guest on June-10-2021

Code answers related to "check if a variable exist python"

Python Answers by Framework

Browse Popular Code Answers by Language