Answer:
K.append(12)
Step-by-step explanation:
From the question, the array name is K.
In python, to add to an array, you make use of the following syntax.
[array-name].append(value)
In this case:
[array-name] = k
and the value to be added is:
value = 12
So, we have:
K.append(12)