确定窗口大小turtle python setup

时间:2018-04-03 08:54:18

标签: python-3.x turtle-graphics

在python 3+中,我正在尝试运行turtle.setup(400,500),但它无效。

没有名为setup的引用。

如何在python 3中使用屏幕设置?

1 个答案:

答案 0 :(得分:1)

根据您导入乌龟的方式,有(至少)三个选项。从最坏到最好:

选项1:

from turtle import *

setup(400, 500)

选项2:

import turtle

turtle.setup(400, 500)

选项3:

from turtle import Turtle, Screen

screen = Screen()
screen.setup(400, 500)

如果这些不适合您,请使用有关运行Python / turtle的环境的更多信息更新您的问题。