Tester.py

def ordenar_burbuja(lista):
  for i in range(len(lista) - 1, 0 , -1):
    for actual in range(0, i):
      if (lista[actual+1] > lista[actual]):
        temporal = lista[actual]
        lista[actual] = lista[actual+1]
        lista[actual+1] = temporal
  return lista
datos = [3, -2, -15, 6, 0, 2]
print(ordenar_burbuja(datos))
What is the output?
Be careful of the whitespace(space,newline) in your answer.