Listing a few points in an elliptic curve
I have a generated elliptic curve of a modulus. I want to list just a few points on it (doesn't matter what they are, I just need one or two) and I was hoping to do:
E.points()
However due to the size of the curve this generates the error:
OverflowError: range() result has too many items
Is there any way I can make it list just a few points?
Please provide some code to generate
E
. People are more likely to explore the question and give help.