I am using protocol buffers in python and I have a Person message
Person
repeated uint64 id
but when I try to assign a value to it like:<
As per the documentation, you aren't able to directly assign to a repeated field. In this case, you can call extend to add all of the elements in the list to the field.
extend
person.id.extend([1, 32, 43432])