This is a function that allows me to print my two lists, cursosArreglo
and tareasArreglo
, but when I print them they come out like this: [['qwert'], ['fisica']]
Esta es la lista de tareas y sus prioridades:
[['zxcvb'], ['4'], ['nbvcx'], ['3'], ['tregd'], ['2'], ['bvxx'], ['3']]
how can i print both lists without the brackets?
def verTareas():
print("")
print("Saludos "+nombre+(" a continuacion puede ver su informacion"))
print("")
print("Esta es la lista de cursos asignados: ")
print str(cursosArreglo)
print("Esta es la lista de tareas y sus prioridades: ")
print '\n'+str(tareasArreglo)
print("")
regresar()