Day1_Chan

from builtins import print

from pip._vendor.distlib.compat import raw_input

import turtle

"""
试一试  import this
python之禅

Author:黄骏捷
Date:2019-09-28
"""
import  this


"""
第一个Python程序 -hello,world
向伟大的Dennis M.Richie先生致敬
"""
print('hello,world')
#你好,世界
name = raw_input("Please input your name:")
print("hello "+name)

turtle.pensize(10)
turtle.pencolor('red')

turtle.forward(100)
turtle.right(50)
turtle.forward(100)
turtle.right(90)
turtle.forward(100)
turtle.mainloop()
发布了66 篇原创文章 · 获赞 45 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/ACofKing/article/details/101792240