I have a function that returns an array of info it can return an empty array I use a _ as a reference to an empty array is this appropriate.
_ = []
lines = Func() #will come out like ["abc","def","etc"] or []
if lines != _ :
    ...
    ...
    ...
 
    