自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 收藏
  • 关注

转载 词频统计

#1.salahFile = open('salah.txt',mode="r",encoding='utf-8')salahText = salahFile.read()salahFile.close()print(salahText)#2.replaceList = [',','.',"'",'\n']for c in replaceList: salahText =salah...

2018-06-20 21:13:00 128

转载 递归,汉诺塔游戏

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(7,'A','B','C')转载于:https://www.cnblo...

2018-06-13 21:01:00 87

转载 列表、元组、字典、集合的定义、操作与综合练习

l = ['Michael','Bob','Tracy']l.append('Bob')l.pop()print(1)t = ('Michael','Bob','Tracy')scores = [85,65,55]d = {'Michael':85,'Bob':65,'Tracy':55}d['Bob'] = 82d['Rose'] = 88d.pop('Bob')print(d)sl ...

2018-06-06 21:42:00 189

转载 文件操作

fr = open('salah.txt', mode='r', encoding='utf-8')plaincode=fr.read()print('明文:'+plaincode)print('密文:',end='')for c in plaincode: print(chr(ord(c)+3),end='')fr = open('salah.txt',mode='r',e...

2018-05-30 21:34:00 73

转载 字符串操作

id = '440802199707180017'area = id[0:6]birthday = id[6:14]sex = id[-2]print(area, birthday, sex)if (int(sex) % 2 == 0): print('girl')else: print('boy')for i in range(12): print(9800+...

2018-05-23 21:13:00 70

转载 函数定义与使用,字符串类型

stuNum = '201709080030'print('年级是:'+stuNum[0:4])print('专业编号是:'+stuNum[4:9])print('序号是:'+stuNum[-3:])IDNo= '440802199707180017'print('省市是:'+IDNo[0:2])print('生日是:'+IDNo[-8:-4])print('性别是:'+IDNo[-2]...

2018-05-23 19:58:00 146

转载 函数定义与使用

importturtleturtle.setup(600,400,0,0)turtle.bgcolor('red')turtle.color('yellow')turtle.fillcolor('yellow')defmygoto(x,y):turtle.penup()turtle.goto(x,y)turtle.pend...

2018-05-16 20:13:00 72

转载 for循环:用turtle画一颗五角星

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)tu...

2018-05-09 20:51:00 208

转载 程序执行流程/布尔类型与布尔:运算猜数字游戏;库的使用:turtle

number = 6while True: guess = int(input('估数字啊柒头\n')) if guess > number: input('大閪咗啊柒头') elif guess < number: input('细閪咗啊柒头') else: ...

2018-05-02 20:31:00 161

转载 条件语句,while循环语句:完整的温度转换程序

a=int(input('摄氏温度转为华氏温度请按1\n华氏温度转为摄氏温度请按2\n'))if a=='1': c=input('请输入摄氏温度:') f=float(c)*9/5+32 print('{}摄氏温度转为华氏温度是:{}'.format(c,f))else: f=float(input('请输入华氏温度:')) c=5/9*(f-32) ...

2018-04-25 21:22:00 375

转载 理解数据类型与数学运算:求和、温度转换

a=input('请输入第一个数:')b=input('请输入第二个数:')sum2=int(a)+int(b)print('两个数的和是:{}'.format(sum2)) a=input('请输入一个摄氏温度:')sum2=int(a)*9/5+32print('华氏温度是:{}'.format(sum2))转载于:https://www.cnblogs.com/He...

2018-04-25 20:14:00 103

转载 Mad Libs 游戏

name1=input('请输入一个名字:')name2=input('请输入一个名字:')name3=input('请输入一个名字:')print('刚吃完饭的{}走到{}面前问{}来打球不'.format(name1,name2,name3))转载于:https://www.cnblogs.com/Hensmann/p/8877545.html...

2018-04-18 21:04:00 147

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除