In Python, I can create an empty list like this:
a = [None] * 5
But in DolphinDB, when I tried to run this:
a = take(NULL, 5)
the interpreter just gave the error message:
Not allowed to create void vector
So how can I create an empty vector with all elements being NULL?