so, I want to use conditional logic in my code, which the condition is when I got response.response_code == '00'
so it will run
And match response == res_3[0]
And match each response.data.bills == res_3[1]
And if response.response_code != '00'
, it will run
And match response == res_3
And match each response.data.bills == res_3
so, what is the best conditional logic for this case ??