摘要: stuNum = '201709090008' print('年级是:'+stuNum[0:4]) print('专业编号是:'+stuNum[4:9] print('序号是:'+stuNum[-3:]) IDNo = '440711199809024227' print('性别是:'+IDNo[2]) print('市区是:'+IDNo[0:6]) print('年月日是:'+IDNo[7:... 阅读全文
posted @ 2018-05-16 21:50 Milliezhu 阅读(65) 评论(0) 推荐(0) 编辑
摘要: import turtle #画一个五角星 turtle. setup(600,400,0,0) turtle.bgcolor('red') turtle.pencolor('yellow') turtle.fillcolor('yellow') def mygoto(x,y): turtle.pe 阅读全文
posted @ 2018-05-16 21:20 Milliezhu 阅读(133) 评论(0) 推荐(0) 编辑