Difference between turtle and Turtle?

后端 未结 5 1100
粉色の甜心
粉色の甜心 2021-01-22 20:16

How are turtle and Turtle different from each other in python version 2.7?

import turtle
star = turtle.Turtle()
for i in ran         


        
5条回答
  •  Happy的楠姐
    2021-01-22 20:41

    The first turtle is called turtle and is referenced by it's name or it in a variable, the turtle.Turtle method creates a new turtle and (most of the time), you set it to a variable.

提交回复
热议问题