turtle 模块以面向对象和面向过程的方式提供 turtle 图形基元。由于它使用Tkinter作为基础图形,因此需要安装有Tk支持的Python版本。
turtle .resizemode()
使用此函数将调整大小模式设置为以下值之一:“auto”,“user”,“noresize”。如果未提供任何参数,则返回当前的resizemode。 resizemode(“user”)通过带有参数的shapesize调用来调用。
用法:turtle.resizemode(rmode=None)
参数:
rmode(可选):字符串“auto”,“user”,“noresize”中的一个
不同的调整大小模式具有以下效果:
- “auto”根据pensize的值调整 turtle 的外观。
- “user”根据shapesize()设置的Stretchfactor和outlinewidth(轮廓)值调整 turtle 的外观
- “noresize”没有改变 turtle 的外观。
下面是上述方法的实现和一些示例:
范例1:
Python3
# importing package
import turtle
# check default value
print(turtle.resizemode())
输出:
noresize
范例2:
Python3
# importing package
import turtle
# print default value
print(turtle.resizemode())
# change mode to auto and check
turtle.resizemode(rmode="auto")
print(turtle.resizemode())
# change mode to user and check
turtle.resizemode(rmode="user")
print(turtle.resizemode())
输出:
noresize auto user
相关用法
- Python Wand function()用法及代码示例
- Python Sorted()用法及代码示例
- Python Numbers choice()用法及代码示例
- Python Tkinter askopenfile()用法及代码示例
- Python ord()用法及代码示例
- Python sum()用法及代码示例
- Python round()用法及代码示例
- Python id()用法及代码示例
- Python vars()用法及代码示例
注:本文由纯净天空筛选整理自deepanshu_rustagi大神的英文原创作品 turtle.resizemode() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。