Preguntas etiquetadas con is-empty







4
Compruebe si la matriz está vacía o nula
Me gustaría saber cómo verificar si una matriz está vacía o nula en jQuery. Lo intenté array.length === 0pero no funcionó. Tampoco arrojó ningún error. Este es el código: var album_text = new Array(); $("input[name='album_text[]']").each(function(){ if( $(this).val() && $(this).val() != '') { album_text.push($(this).val()); } }); if (album_text.length === 0) { …
106 jquery  arrays  is-empty 

3
ValueError al verificar si la variable es None o numpy.array
Me gustaría comprobar si la variable es None o numpy.array. Implementé una check_afunción para hacer esto. def check_a(a): if not a: print "please initialize a" a = None check_a(a) a = np.array([1,2]) check_a(a) Pero este código genera ValueError. ¿Cuál es la forma más sencilla? ValueError Traceback (most recent call last) …
104 python  numpy  is-empty 
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.