“Sprawdź, czy zmienna istnieje Python” Kod odpowiedzi

Jak sprawdzić, czy w Pythonie istnieje zmienna

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

#if the variable is global:
if 'myVar' in globals():
  # myVar exists.
Worried Wryneck

Jeśli zmienna istnieje Python

# If the variable exists at all:
if "myVar" in locals() or globals():
	# `myVar` exists


# If the variable is local: 
if "myVar" in locals():
	# `myVar` is local

# If the variable is global:
if "myVar" in globals():
	# `myVar` is global
Temerold

JS Sprawdź, czy istnieje funkcja

if (typeof yourFunctionName == 'function') { 
  yourFunctionName(); 
}
Dark Dunlin

Jak sprawdzić, czy istnieje var Python

# for local
if 'myVar' in locals():
  # myVar exists.
# for globals
if 'myVar' in globals():
  # myVar exists.
Filthy Fish

Sprawdź, czy zmienna istnieje Python

try:
    myVar
except NameError:
    myVar = None      # or some other default value.

# Now you're free to use myVar without Python complaining.
Demo Can

Odpowiedzi podobne do “Sprawdź, czy zmienna istnieje Python”

Pytania podobne do “Sprawdź, czy zmienna istnieje Python”

Więcej pokrewnych odpowiedzi na “Sprawdź, czy zmienna istnieje Python” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu