I have different variables of an unknown type (in ABAQUS, it says "Sequence") and want to combine them through a loop:
a = [[unknown type], [unknown type], ...]
x = []
for i in a:
x.append(i)
The problem now is that when I initialize x with = [] I get the error message
TypeError: Can only concatenate list (not "Sequence") to list.
Is there another (simple/efficient) way, e.g. to automatically create x in the first loop?