08 2020 档案

摘要:在CentOS8.0中默认不再支持ntp软件包,时间同步将由chrony来实现. 添加wlnmp源rpm -ivh http://mirrors.wlnmp.com/centos/wlnmp-release-centos.noarch.rpm 安装ntp服务 时间同步yum install wntp 阅读全文
posted @ 2020-08-07 20:14 幻雪追梦 阅读(1685) 评论(0) 推荐(0)
摘要:import turtledef main(): count = 1 while count <= 5: turtle.forward(100) turtle.right(144) count = count + 1 turtle.exitonclick()if __name__== '_main_ 阅读全文
posted @ 2020-08-05 22:01 幻雪追梦 阅读(532) 评论(0) 推荐(0)
摘要:print( sum( [ i for i in range(1,10) ] ) ) 阅读全文
posted @ 2020-08-05 21:51 幻雪追梦 阅读(1889) 评论(0) 推荐(0)
摘要:import turtleturtle.color("blue")turtle.penup()turtle.goto(-110, -25)turtle.pendown()turtle.circle(45)turtle.color("black")turtle.penup()turtle.goto(0 阅读全文
posted @ 2020-08-05 21:09 幻雪追梦 阅读(1213) 评论(0) 推荐(0)