摘要: print("Hello, world! My name is type your name") stuNum = '201709080067' print('年级是:'+stuNum[0:4]) print('专业编号是: '+stuNum[4:9]) print('序号是: '+stuNum[-3:]) print("Hello, world! My name is t... 阅读全文
posted @ 2018-05-21 16:15 Gloriann 阅读(120) 评论(0) 推荐(0) 编辑
摘要: import turtle turtle.color('red') turtle.fillcolor('yellow') turtle.begin_fill() while True: turtle.forward(100) turtle.right(165) if abs(turtle.pos())<1: break turtle.end_fill(... 阅读全文
posted @ 2018-05-14 16:28 Gloriann 阅读(142) 评论(0) 推荐(0) 编辑