Perbedaan dua set dalam python

x = {1, 2, 3, 4, 5, 6}
y = {1, 2, 3, 4}

z = x.difference(y)
# 5, 6
Bst Barracuda