I want to split python code over two lines, my code is something similar to:
if long_named_three_d_array[first_dimension][second_dimension][third_dimension] == somevalue:
//dosomething
I want to split above if condition over two lines.
Please help. Thanks.