I am looking forward to your update on how the process went. Thanks for
your effort...
On Friday, September 25, 2015 at 11:46:48 AM UTC-7, Juan Luis Varona wrote:
>
> I have downlodaded 6.9.rc0 and I my computer is now compiling with xcode 7
> on osx 11.10.
>
> I will inform at the end of the p
> snip
>
> > [n for n in range(0,10) if is_Integer(n)]
>
> You are doing this from the command line, yes?
I am doing this in the notebook()
-Nirmal
--~--~-~--~~~---~--~~
To post to this group, send email to sage-devel@googlegroups.com
To uns
I am using Robert's solution. It seems to work well.
Thanks,
Nirmal
--~--~-~--~~~---~--~~
To post to this group, send email to sage-devel@googlegroups.com
To unsubscribe from this group, send email to
sage-devel-unsubscr...@googlegroups.com
For more options,
I am using Robert's solution. It seems to work well.
Thanks,
Nirmal
--~--~-~--~~~---~--~~
To post to this group, send email to sage-devel@googlegroups.com
To unsubscribe from this group, send email to
sage-devel-unsubscr...@googlegroups.com
For more options,
Thanks for all the helpful suggestions. I did not realize that
is_Integer() was deprecated.
On Apr 22, 2:00 am, John Cremona wrote:
> This is precisely why we deprecated all the is_*() functions for end-user use:
>
> --
> | Sage
. You can see
this with
type(1/2 + 1/2)
To coerce a rational number ot integers, use "Integer()"
e.g.
Integer(1/2) -> no coercion error
Integer(1/2 + 1/2) -> type(1) -> integer
Harald
Nirmal writes
Thanks for your response.
I was looking for a function that returns T