You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sage-s...@googlegroups.com
Hi,
I need a command which separate the components of points. For example
let P=(2,4).
I need the first component of this point.
Could you please help me?
Johan Grönqvist
unread,
May 12, 2012, 4:01:11 PM5/12/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sage-s...@googlegroups.com
sage: P=(2,4)
sage: P[0]
2
sage: P[1]
4
/ johan
kcrisman
unread,
May 12, 2012, 9:59:33 PM5/12/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sage-s...@googlegroups.com
Just to make it clear, you are really taking items from a "Python tuple". If you are talking about actual "points" in the graphical sense, you'd need to do something else.