Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Lib/turtle.py
Original file line number Diff line number Diff line change
Expand Up @@ -1718,7 +1718,7 @@ def xcor(self):
>>> reset()
>>> turtle.left(60)
>>> turtle.forward(100)
>>> print turtle.xcor()
>>> print(turtle.xcor())
50.0
"""
return self._position[0]
Expand All @@ -1732,7 +1732,7 @@ def ycor(self):
>>> reset()
>>> turtle.left(60)
>>> turtle.forward(100)
>>> print turtle.ycor()
>>> print(turtle.ycor())
86.6025403784
"""
return self._position[1]
Expand Down Expand Up @@ -2335,7 +2335,7 @@ def isvisible(self):

Example (for a Turtle instance named turtle):
>>> turtle.hideturtle()
>>> print turtle.isvisible():
>>> print(turtle.isvisible())
False
"""
return self._shown
Expand Down