在另一个列表中列出一个列表

时间:2017-01-17 11:40:15

标签: python

我想调用一个返回列表并在现有列表中放置其返回值的函数。是否可以(不使用extend)?

示例:

def foo():
    return [1,2,3]

def bar():
    return [-1, 0, foo()]

我希望bar返回[-1,0,1,2,3]

由于

1 个答案:

答案 0 :(得分:6)

$(document).ready(function() {

$('#idOfTheFirstDropDown').bind('change', function() {
    var options = $(this).children('option');
    var item = $('div.c-select').children().hide(); // hide all the elements
    var value = Math.floor(Math.random() * options.length );
    //console.log(value);
    if (value.length) { // if selected 
        item.show(); // show the next dropdown
    }
}).trigger('change');
});