用法:
turtle.setup(width=_CFG['width'], height=_CFG['height'], startx=_CFG['leftright'], starty=_CFG['topbottom'])
设置主窗口的大小和位置。参数的默认值存储在配置字典中,可以通过
turtle.cfg
文件进行更改。- width:- 如果是整数,则为像素大小,如果是浮点数,则为屏幕的一部分;默认为屏幕的 50%
- height:- 如果是整数,则以像素为单位的高度,如果是浮点数,则为屏幕的一部分;默认为屏幕的 75%
- startx:- 如果为正,则从屏幕左边开始以像素为单位,如果为负,则从右边开始,如果
None
, 水平居中窗口 - starty:- 如果为正,则从屏幕上边开始以像素为单位,如果为负,则从下边开始,如果
None
, 垂直居中窗口
参数:
>>> screen.setup (width=200, height=200, startx=0, starty=0) >>> # sets window to 200x200 pixels, in upper left of screen >>> screen.setup(width=.75, height=0.5, startx=None, starty=None) >>> # sets window to 75% of screen by 50% of screen and centers
相关用法
- Python turtle.setundobuffer()用法及代码示例
- Python turtle.setworldcoordinates()用法及代码示例
- Python turtle.setx()用法及代码示例
- Python turtle.settiltangle()用法及代码示例
- Python turtle.sety用法及代码示例
- Python turtle.settiltangle用法及代码示例
- Python turtle.setx用法及代码示例
- Python turtle.setheading用法及代码示例
- Python turtle.seth()用法及代码示例
- Python turtle.sety()用法及代码示例
- Python turtle.setworldcoordinates用法及代码示例
- Python turtle.speed()用法及代码示例
- Python turtle.shapesize用法及代码示例
- Python turtle.shape()用法及代码示例
- Python turtle.screensize用法及代码示例
- Python turtle.shape用法及代码示例
- Python turtle.shapetransform()用法及代码示例
- Python turtle.speed用法及代码示例
- Python turtle.stamp用法及代码示例
- Python turtle.showturtle()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 turtle.setup。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。