is there a way to print a list for its element in a single line without using a loop ?
a = [1, 2, 3]
output - 1 2 3
the only condition is not to use a loop. So basically maybe taking list as an object and convert it to another object like the output and print. Just dont want to use refer the list element by element like in a for or any other loop.