Hello,
Here is a suggestion. The default way to post examples is like so:
sage: s=0
sage: for i in range(100):
....: s=s+i
....:
sage: print s
4950
I would propose a format that makes it easier to cut and paste (into a
file), without having to do it line by line, namely
s=0
for i in range(100):
s=s+i
print s
--mb
--~--~---------~--~----~------------~-------~--~----~
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-forum
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---