摘要: def hanoi(n,a,b,c): if n ==1: print(n,a+'->'+c) else: hanoi(n-1,a,c,b) print(n,a+'->'+c) hanoi(n-1,b,a,c) hanoi(5,'A','B','c') 阅读全文
posted @ 2018-06-13 21:20 黄雪旎 阅读(140) 评论(0) 推荐(0) 编辑
摘要: l = ['Mary','Bob','Tracy'] l.append('Bob') l.pop() print(1) t = ('Mary','Bob','Tracy') scores = [45,65,55] d = {'Mary':45,'Bob':65,'Tracy':55} d['Bob' 阅读全文
posted @ 2018-06-06 21:29 黄雪旎 阅读(159) 评论(0) 推荐(0) 编辑
摘要: fr = open('h.',mode='r',encoding='utf-8') plaincode = fr.read() print('明文:' + plaincode) print('密文:',end='') for c in plaincode: print(chr(ord(c)+3),e 阅读全文
posted @ 2018-05-30 21:16 黄雪旎 阅读(169) 评论(0) 推荐(0) 编辑
摘要: for i in range(12): print(9800+i,chr(9800+i)) plainText=input('message:') for c in plainText: print(chr(ord(c)+3),end='') 阅读全文
posted @ 2018-05-23 20:56 黄雪旎 阅读(90) 评论(0) 推荐(0) 编辑
摘要: stuNum='201709080034' print('年级是:'+stuNum[0:4]) print('专业编号是:'+stuNum[4:9]) print('班级是:'+stuNum[-3:]) 阅读全文
posted @ 2018-05-16 21:41 黄雪旎 阅读(110) 评论(0) 推荐(0) 编辑
摘要: import turtle turtle.setup(600,400,0,0) turtle.bgcolor('red') turtle.color('yellow') turtle.fillcolor('yellow') def mygoto(x,y): turtle.penup() turtle 阅读全文
posted @ 2018-05-16 20:43 黄雪旎 阅读(109) 评论(0) 推荐(0) 编辑
摘要: import turtle import time turtle.fillcolor('yellow') turtle.begin_fill() turtle.forward(100) turtle.right(144) time.sleep(1) turtle.forward(100) turtl 阅读全文
posted @ 2018-05-09 20:23 黄雪旎 阅读(294) 评论(0) 推荐(0) 编辑
摘要: while True: a = int(input('摄氏温度转换为华氏温度请按 1\n华氏温度转化为摄氏温度请按 2\n退出请按 3\n')) if a==1: c = float(input('请输入摄氏温度:')) f = (c)*9/5+32 print('摄氏{:.2f}温度转为华氏温度是 阅读全文
posted @ 2018-04-25 21:37 黄雪旎 阅读(262) 评论(0) 推荐(0) 编辑
摘要: a=int(input ('摄氏度转换为华氏度请按 1\n华氏度转换为摄氏度请按 2\n')) if a==1: c = float(input('请输入摄氏温度:')) f = c*9/5+32 print('{:.2f}°C转换成华氏温度为{:.2f}°F'.format(c,f)) else: 阅读全文
posted @ 2018-04-25 20:56 黄雪旎 阅读(315) 评论(0) 推荐(0) 编辑
摘要: a=input('请输入第一个数:') b=input('请输入第二个数:') sum2=int(a)+int(b) print('两个数的和是:'.format(sum2)) a=input('请输入一个摄氏度:') sum2=int(a)*9/5+32 print('转换的华氏温度是:{}'.format(sum2)) 阅读全文
posted @ 2018-04-25 20:39 黄雪旎 阅读(138) 评论(0) 推荐(0) 编辑