var python2web = new Array();
var texto;
function peticion(){
xhr = new XMLHttpRequest();
xhr.onreadystatechange = function(){
python2web = xhr.responseText;
}
xhr.open("get","python2web",true);
xhr.send();
}
setInterval(peticion,1000/100);
Si imprimo en consola lo que hay en python2web me sale undefined
console.log(python2web);
Sin embargo si lo hago con un bucle sale el texto correspondiente
function mostrar(){
console.log(python2web);
}
setInterval(python2web,1000/100);`