Lines Matching defs:title
126 'setworldcoordinates', 'textinput', 'title', 'tracer', 'turtles', 'update',
168 "title": "Python Turtle Graphics",
814 def textinput(self, title, prompt):
817 Arguments: title is the title of the dialog window,
827 return simpledialog.askstring(title, prompt, parent=self.cv)
829 def numinput(self, title, prompt, default=None, minval=None, maxval=None):
832 Arguments: title is the title of the dialog window,
847 return simpledialog.askfloat(title, prompt, initialvalue=default,
3687 _title = _CFG["title"]
3697 self._root.title(_Screen._title)
3751 def title(self, titlestring):
3752 """Set title of turtle-window
3762 >>> screen.title("Welcome to the turtle-zoo!")
3765 _Screen._root.title(titlestring)