Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

bellcode / lesson3-1-1_DIY1

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • lesson3-1-1_DIY1
  • dly.py
Find file
BlameHistoryPermalink
  • BellCodeEditor's avatar
    save project · 4433c464
    BellCodeEditor committed 2 years ago
    4433c464
dly.py 234 Bytes
Edit
1 2 3 4 5 6 7 8 9 10
#导入模块
import turtle
#创建画笔
pen=turtle.Pen()
#写字
pen.write("诺依,你好呀, \nturtle模块真好用,\n我会在画布上写字了",font=("times",20,"normal"))
#隐藏
pen.hideturtle()
#保存
turtle.done()