Однако я пытался использовать этот код в качестве заставки;у меня возникла проблема с отображением 1 пикселя;мне нужно увеличить размер черепашьей ручки, но нет места, где бы она не провалилась при запуске;Я пытался сверху, в середине и снизу безрезультатно.
from turtle import *
import random
from random import randint # from the random module import the function randint
#like turtle it is a module, read ahead for use
speed(9999999)
bgcolor('black')
x = 1
while x < 40099999999999999:
r = randint(0,255) #makes variables r,g,b whose value is an integer,
g = randint(0,255) # which is between 0 and 255. It is random, and
b = randint(0,255) # changes every time the loop runs
colormode(255) # this is something that is irrelevant at this point - unless you are using python 2.
pencolor(r,g,b) # changes the color of the pen to the rgb coordinates
# obtained by the variables r, g, b changing each time
fd(random.random() + random.randrange(99) * random.random())
rt(90)#V1.1 - removed the random for this module - no reason to have random for the same number - wastes cpu power.
x = x+1
спасибо;amdcrash.