Apply slicing:
a[0:0] = k
Or do it manually:
a = k + a
The first approach remain the same for insertion at any place, i.e. a[n:n] = k
would insert k at position n, but the second approach would not be the same, that will be
a = a[:n] + k + a[n:]