Published on

学习Python第1天

Authors
  • avatar
    Name
    Tyler Tian
    Twitter

我今天学习了Python的print函数, 同时学会使用了 turtle 库来画正方形等图形.

print("hello world")
import turtle
turtle.forward(100)
turtle.left(90)

明天就是新的一周了,准备学习变量的内容.