I want to run a range of numbers through the factor() function and if
I run a loop through a list as in:
for i in [25,37,205]:
print i.factor()
it works fine, but if I try
for i in range(1,5):
print i.factor()
I get the error message 'int' object has no attribute 'factor' - how
do I get
factor() to work with a range? Thanks...Dave
--
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org