会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
黄雪旎
博客园
首页
新随笔
联系
订阅
管理
2018年6月13日
递归,汉诺塔游戏
摘要: 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 黄雪旎
阅读(146)
评论(0)
推荐(0)
2018年6月6日
列表、元组、字典、集合的定义、操作与综合练习
摘要: 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 黄雪旎
阅读(163)
评论(0)
推荐(0)
2018年5月30日
文件操作,列表实例NiceHexSpiral
摘要: 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 黄雪旎
阅读(175)
评论(0)
推荐(0)
2018年5月23日
字符串操作
摘要: 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 黄雪旎
阅读(98)
评论(0)
推荐(0)
2018年5月16日
函数定义与使用,字符串类型
摘要: stuNum='201709080034' print('年级是:'+stuNum[0:4]) print('专业编号是:'+stuNum[4:9]) print('班级是:'+stuNum[-3:])
阅读全文
posted @ 2018-05-16 21:41 黄雪旎
阅读(117)
评论(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 黄雪旎
阅读(119)
评论(0)
推荐(0)
2018年5月9日
for循环:用turtle画一颗五角星
摘要: 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 黄雪旎
阅读(306)
评论(0)
推荐(0)
2018年4月25日
条件语句,while循环语句:完整的温度转换程序
摘要: 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 黄雪旎
阅读(270)
评论(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 黄雪旎
阅读(323)
评论(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 黄雪旎
阅读(149)
评论(0)
推荐(0)
下一页
公告