Return the turtle's y coordinate --- No arguments. Example (for a Turtle instance named turtle): >>> reset() >>> turtle.left(60) >>> turtle.forward(100) >>> print turtle.ycor() 86.6025403784
(self)
| 1625 | return self._position[0] |
| 1626 | |
| 1627 | def ycor(self): |
| 1628 | """ Return the turtle's y coordinate |
| 1629 | --- |
| 1630 | No arguments. |
| 1631 | |
| 1632 | Example (for a Turtle instance named turtle): |
| 1633 | >>> reset() |
| 1634 | >>> turtle.left(60) |
| 1635 | >>> turtle.forward(100) |
| 1636 | >>> print turtle.ycor() |
| 1637 | 86.6025403784 |
| 1638 | """ |
| 1639 | return self._position[1] |
| 1640 | |
| 1641 | |
| 1642 | def goto(self, x, y=None): |
no outgoing calls
no test coverage detected