turtle 模块以面向对象和面向过程的方式提供 turtle 图形基元。由于它使用Tkinter作为基础图形,因此需要安装有Tk支持的Python版本。
turtle .left()
turtle.left()方法用于通过其参数值来更改 turtle 的方向。它使 turtle 的头部朝一个方向移动。
turtle.left(angle)
它接受的参数是angle {一个数字(整数或浮点数)}。因此,它以角度单位向左转 turtle 。 (单位默认为度,但可以通过degrees()和radians()函数进行设置。)角度方向取决于模式。
下面是上述方法的实现和一些示例:
范例1:
Python3
# importing package
import turtle
# move the turtle forward by
# 100 unit distance in the
# direction of head of turtle
turtle.forward(100)
# change the direction of turtle
# by 90 degrees to the left.
turtle.left(90)
# move the turtle forward by
# 100 unit distance in the
# direction of head of turtle
turtle.forward(100)
输出:
范例2:
Python3
# importing package
import turtle
# Loop for pattern
for i in range(10):
# move the turtle forward by
# 100+variable unit distance
# in the direction of head of
# turtle
turtle.forward(100+10*i)
# change the direction of turtle
# by 90 degrees to the left.
turtle.left(90)
输出:
相关用法
- Python set()用法及代码示例
- Python os.dup()用法及代码示例
- Python next()用法及代码示例
- Python Decimal ln()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python Decimal exp()用法及代码示例
- Python os.ttyname()用法及代码示例
- Python os.pread()用法及代码示例
- Python os.fsencode()用法及代码示例
- Python os.system()用法及代码示例
- Python os.isatty()用法及代码示例
- Python sympy.log()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
- Python os._exit()用法及代码示例
- Python shutil.which()用法及代码示例
- Python os.sched_rr_get_interval()用法及代码示例
- Python os.sched_get_priority_max()用法及代码示例
注:本文由纯净天空筛选整理自deepanshu_rustagi大神的英文原创作品 turtle.left() method in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。