用法:
turtle.screensize(canvwidth=None, canvheight=None, bg=None)
- canvwidth:- 正整数,画布的新宽度(以像素为单位)
- canvheight:- 正整数,画布的新高度(以像素为单位)
- bg:- 颜色字符串或color-tuple,新的背景颜色
参数:
如果没有给出参数,则返回当前(canvaswidth,canvasheight)。否则调整 turtle 正在绘制的画布的大小。不要更改绘图窗口。要观察画布的隐藏部分,请使用滚动条。使用这种方法,可以使以前在画布之外的绘图部分可见。
>>> screen.screensize() (400, 300) >>> screen.screensize(2000,1500) >>> screen.screensize() (2000, 1500)
例如寻找错误逃脱的 turtle ;-)
相关用法
- Python turtle.screensize()用法及代码示例
- Python turtle.speed()用法及代码示例
- Python turtle.shapesize用法及代码示例
- Python turtle.setworldcoordinates()用法及代码示例
- Python turtle.shape()用法及代码示例
- Python turtle.setx()用法及代码示例
- Python turtle.settiltangle()用法及代码示例
- Python turtle.shape用法及代码示例
- Python turtle.setup用法及代码示例
- Python turtle.shapetransform()用法及代码示例
- Python turtle.sety用法及代码示例
- Python turtle.speed用法及代码示例
- Python turtle.settiltangle用法及代码示例
- Python turtle.stamp用法及代码示例
- Python turtle.setundobuffer()用法及代码示例
- Python turtle.showturtle()用法及代码示例
- Python turtle.shapetransform用法及代码示例
- Python turtle.stamp()用法及代码示例
- Python turtle.shearfactor()用法及代码示例
- Python turtle.setx用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 turtle.screensize。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。