you can pass a list to the update method and this will update the setA with the elements.
# pass a list with elements 11 and 12
setA.update([11, 12])
# check if setA is updated with the elements.
print(setA)
#output
{1, 2, 3, 4, 5, 6, 7, 8, 11, 12, (9, 10)}