The following code
EllipticCurve([0,1]).reduction(5).cardnality()
returns an error, while the code
e = EllipticCurve([0,1]).reduction(5)
e.cardnality()
works fine. Is there a way to do this on one line? (Note: I don't particularly care about this with elliptic curves, I'd just like to be able to do things like this in one line. In other words, I'm not looking for a mathematical answer.)