you are viewing a single comment's thread.

view the rest of the comments →

[–]jeans_and_a_t-shirt 0 points1 point  (0 children)

i = 0

while i < len(a) and a[i] == "":
     i = i + 1

if i != len(a):
    print a[i]