[sage-support] Re: List of standard functions?

2010-04-03 Thread Simon King
Hi! Question out of ignorance: What do you mean by a 'standard function'? Is it calculus stuff such as sin and cos, or do you mean Python functions? If it is the latter, you may get a list of all callable objects in the global name space by sage: F = [f for f in globals().values() if

[sage-support] Re: List of standard functions?

2010-04-03 Thread Alec Mihailovs
On Apr 3, 11:55 am, Simon King simon.k...@nuigalway.ie wrote:   sage: F = [f for f in globals().values() if callable(f)] I would write it as filter(callable, globals().values()) Alec -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send