Respuesta :

Answer:

data = [7, 105, 0, 0, 9, 62]

result = ""

for number in data:

   if number != 0:

       result += str(number)

Explanation:

- Initialize the data and result

- Create a for loop that iterates through the data

Inside the loop, check if a number in data is not equal to 0, put that number in the result