Without using reset() ;-)
---------------------------------------
"""
-from tkinter.turtle import *
+from turtle import *
import time
def main():
"""
import math
-from tkinter.turtle import Turtle, mainloop
+from turtle import Turtle, mainloop
from time import clock
# wrapper for any additional drawing routines
# Ein einfaches Programm zur Demonstration von "chaotischem Verhalten".
-from tkinter.turtle import *
+from turtle import *
def f(x):
return 3.9*x*(1-x)
Press STOP to exit the program!
------------------------------------
"""
-from tkinter.turtle import *
+from turtle import *
from datetime import datetime
mode("logo")
# colormixer
-from tkinter.turtle import Screen, Turtle, mainloop
+from turtle import Screen, Turtle, mainloop
import sys
sys.setrecursionlimit(20000) # overcomes, for now, an instability of Python 3.0
a Logo program written by Erich Neuwirth. See:
http://homepage.univie.ac.at/erich.neuwirth/
"""
-from tkinter.turtle import Turtle, colormode, tracer, mainloop
+from turtle import Turtle, colormode, tracer, mainloop
from random import randrange
from time import clock
methods are taken from the PythonCard example
scripts for turtle-graphics.
"""
-from tkinter.turtle import *
+from turtle import *
from time import sleep, clock
class CurvesTurtle(Pen):
# Mini Lindenmayer tool
###############################
-from tkinter.turtle import *
+from turtle import *
def replace( seq, replacementRules, n ):
for i in range(n):
To exit press STOP button
---------------------------------------
"""
-from tkinter.turtle import *
+from turtle import *
class Disc(Turtle):
def __init__(self, n):
To exit press STOP button
-------------------------------------------
"""
-from tkinter.turtle import *
+from turtle import *
def switchupdown(x=0, y=0):
if pen()["pendown"]:
colorloop:
"""
-from tkinter.turtle import *
+from turtle import *
def main():
peacecolors = ("red3", "orange", "yellow",
http://en.wikipedia.org/wiki/Penrose_tiling
-------------------------------------------
"""
-from tkinter.turtle import *
+from turtle import *
from math import cos, pi
from time import clock, sleep
scrollbar of the canvas.
"""
-from tkinter.turtle import Shape, Turtle, mainloop, Vec2D as Vec
+from turtle import Shape, Turtle, mainloop, Vec2D as Vec
from time import sleep
G = 8
current pen is cloned. So in the end there
are 1024 turtles.
"""
-from tkinter.turtle import Turtle, mainloop
+from turtle import Turtle, mainloop
from time import clock
def tree(plist, l, a, f):
Followed by a complete undo().
"""
-from tkinter.turtle import Screen, Turtle, mainloop
+from turtle import Screen, Turtle, mainloop
from time import clock, sleep
def mn_eck(p, ne,sz):
"""
-from tkinter.turtle import *
+from turtle import *
def yin(radius, color1, color2):
width(3)
from idlelib.textView import view_file # TextViewer
from imp import reload
-from tkinter import turtle
+import turtle
import time
STARTUP = 1
"""turtle example: Using TurtleScreen and RawTurtle
for drawing on two distinct canvases.
"""
-from tkinter.turtle import TurtleScreen, RawTurtle, TK
+from turtle import TurtleScreen, RawTurtle, TK
root = TK.Tk()
cv1 = TK.Canvas(root, width=300, height=200, bg="#ddffff")
Library
-------
+- Bug #3884: Make the turtle module toplevel again.
+
What's New in Python 3.0 release candidate 1
============================================