Difference between turtle and Turtle?

后端 未结 5 1119
粉色の甜心
粉色の甜心 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条回答
  •  情书的邮戳
    2021-01-22 21:00

    turtle is the module that you import while Turtle is that name of the class. Using from turtle import * removes the need for turtle.Turtle.

提交回复
热议问题