Search code examples
pythonarrayseventsdiscordbots

Discоrd Bot Event


is it possible to somehow put before.rules and after.sales into two arrays, then compare the number of elements in them and subtract not their number, but the elements, so that the rest can be output later? example


Solution

  • To compare the lengths of two lists, you can:

    >>> print(len(after.roles)-len(before.roles))
    3
    

    In this example 3 new roles were gained