Lines Matching defs:write
95 write_docstringdict() to write a dictionary with the original (English)
140 'write', 'xcor', 'ycor']
3417 """Performs the writing for write()
3427 def write(self, arg, move=False, align="left", font=("Arial", 8, "normal")):
3443 >>> turtle.write('Home = ', True, align="center")
3444 >>> turtle.write((0,0), True)
3839 """Create and write docstring-dictionary to file.
3862 f.write('docsdict = {\n\n')
3864 f.write('%s :\n' % repr(key))
3865 f.write(' """%s\n""",\n\n' % docsdict[key])
3867 f.write('%s :\n' % repr(key))
3868 f.write(' """%s\n"""\n\n' % docsdict[key])
3869 f.write("}\n")
4036 write("startstart", 1)
4037 write("start", 1)
4067 write("wait a moment...")
4138 tri.write("CAUGHT! ", font=("Arial", 16, "bold"), align="right")
4152 tri.write(" Click me!", font = ("Courier", 12, "bold") )