“Importación de recarga de Python” Código de respuesta

Importación de recarga de Python

import my_module				# initial import of my_module

from importlib import reload 	
my_module = reload(my_module)	# reload of my_module 
VasteMonde

Importación de actualización de Python

from importlib import reload  
import foo

while True:
    # Do some things.
    if is_changed(foo):
        foo = reload(foo)
Kind Koala

Respuestas similares a “Importación de recarga de Python”

Preguntas similares a “Importación de recarga de Python”

Más respuestas relacionadas con “Importación de recarga de Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código