Note: “more than” is > … => is not a valid operator.
Try sum(y > 2 for y in x)
Or, as suggested by @Jochen, to guard against non-conventional nth-party classes, use this:
sum(1 for y in x if y > 2)
Note: “more than” is > … => is not a valid operator.
Try sum(y > 2 for y in x)
Or, as suggested by @Jochen, to guard against non-conventional nth-party classes, use this:
sum(1 for y in x if y > 2)