05 2018 档案

摘要:name1 = 'gaga' name2 = 'katherine' classmates = ['gaga','katherine','lily','luckly'] classmates.append('coco') classmates.insert(1,'cole') classmates.pop() classmates.pop(4) classmates[0] = 'ji... 阅读全文
posted @ 2018-05-28 16:16 Gagaying 阅读(138) 评论(0) 推荐(0)
摘要:stuNum='201709080017' print('年级是:'+stuNum[0:4]) print('专业编号是:'+stuNum[4:9]) print('序号是:'+stuNum[-3:]) stuNum='440682199901085049' print('广东省:'+stuNum[0:4]) print('佛山市:'+stuNum[4:6]) print('生日:... 阅读全文
posted @ 2018-05-21 15:52 Gagaying 阅读(176) 评论(0) 推荐(0)
摘要:import turtle while True: turtle.color("blue") turtle.bgcolor('red') turtle.forward(100) turtle.right(132) if abs(turtle.pos())<1: break import turtle turtle.setup(600... 阅读全文
posted @ 2018-05-14 15:41 Gagaying 阅读(174) 评论(0) 推荐(0)
摘要:import turtle turtle.penup() turtle.left(90) turtle.fd(200) turtle.pendown() turtle.right(90) turtle.fillcolor("red") turtle.begin_fill() turtle.circle(10, 180) turtle.circle(25, 110) turtle.lef... 阅读全文
posted @ 2018-05-07 16:45 Gagaying 阅读(127) 评论(0) 推荐(0)