Search results

  1. N

    How to conditionally select first entry from one of two dictionaries?

    @Endercraft Hmm, that's not working either unfortunately. @余川705 Google Translate: Gray is because the data in the JS parsing is a string, and you need to convert to integer or decimal if you want to compare sizes Oh, hmm, that might make sense... So if the input was this...
  2. N

    How to conditionally select first entry from one of two dictionaries?

    Hmm, ok, trying to make this work. I'm adding a conditional, used first_dict[0][important_key] as the variable, selected less than, and now I'm trying to input this as an expression for the comparison: [lv=second_dict[0][important_key]] But the OK button is greyed out, so I assume I'm still...
  3. N

    How to conditionally select first entry from one of two dictionaries?

    Noob here. I'm making two HTTP requests and saving the results to variables. Both requests return a JSON array of objects, which I then parse, resulting in two separate dictionary variables. So something like this: first_dict = { 0: { important_key: 3333 }, ... } second_dict = { 0...
Top