turtle库画四点的时钟 难度0

Posted WY_记录

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了turtle库画四点的时钟 难度0相关的知识,希望对你有一定的参考价值。

#turtle库画四点的时钟

import turtle

#画时钟外形
turtle.penup( )
turtle.goto( 0 , -100 )
turtle.pendown( )
turtle.circle( 100 )

#画显示数字
turtle.penup( )
turtle.goto( 0 , -90 )
turtle.write( " 6 " )
turtle.goto( 90 , 0 )
turtle.write( " 3 " )
turtle.goto( 0 , 90 )
turtle.write( " 12 " )
turtle.goto( -90 , 0 )
turtle.write( " 9 " )

#画指针
turtle.goto( 0 , 0 )
turtle.pendown( )
turtle.right( 45 )
turtle.forward( 30 )
turtle.penup( )
turtle.goto( 0,0 )
turtle.pendown( )
turtle.left( 120 )
turtle.forward( 70 )

#使页面持续显示
turtle.done( )

 

以上是关于turtle库画四点的时钟 难度0的主要内容,如果未能解决你的问题,请参考以下文章

用Python Turtle库画b站logo(张野 付博林组)

Python中如何用turtle库画出小猪佩奇社会人

为啥用python turtle库画蟒蛇会出现这个错误?

Python-turtle库画樱花树

海龟库画春联怎么画

python用turtle库画一棵树