美文网首页
day11文件操作捕获异常作业

day11文件操作捕获异常作业

作者: 暖心人桂 | 来源:发表于2018-09-04 08:47 被阅读0次

    一、文件操作

    1、基本过程:
    打开文件 --- 操作 --- 关闭文件
    open:(路径,打开方式,encoding=编码方式)
    路径:绝对路径(了解),相对路径: ./ , ../ , .../
    打开方式:r, rb,w,wb,a
    注意:路径不存在的时候,读的形式打开会报错,写的形式打开会自动创建文件。
    设置编码方式:utf-8 , gbk
    注意:如果以二进制的方式打开文件(rb,wb),不能设置编码方式。
    

    2、文件的读和写:

    read()、readline() -- 读
    write() -- 写
    

    jison是由特定格式的一种文本形式,他有自己的语法

    jidon 文件就是后缀.json的文本文件

    #json 格式对应的数据类型及其表现
    #一个json文件总只能存一个数据,这个数据的类型必须是一下类型中的一个
    
    #对象(cbject)  {相当于Python中的字典
    #数组(array)  [任意类型]
    #数字(number)
    #字符串(string) " abc"
    #布尔
    #null
    

    lood(json文件对象):以json格式,获取文件内容.将内容转换成相应的Python数据

     if  __name__ == '__main__':
         with open('./filse/json1.json','r',encoding='utf-8') as f:
             content = json.load(f)
             print (content)
         print(type(content))
    
            #python转json数据
    
    python--->  json
    字典        对象
    列表\元祖--->数组
    dump(需要写人json文件中的Python数据,json文件对象
    
    3.python对json文件的支持
    json ---> python
    对象 ---> 字典
    数组 ---> 列表
    数字 ---> 整数、浮点数
    true,false ---> 布尔(True,False)
    null ---> None
    
    '''
    python---> json
    字典-----------------> 对象 
    列表,数组 -----------> 数组
    整数、浮点数 ---------> 数字
    布尔(True,False)---> true,false
    None--------------->  null 
    '''
    4.异常捕获
    a.程序出现某种异常,但是不想因为这个异常而让程序崩溃。这个时候就可以使用异常捕获机制
    b.捕获异常
    
    1.形式一(捕获所有异常)
    try:
      需要捕获异常的代码块(可能会出现异常的代码块)
    except:
      出现异常后执行的代码
    '''
    执行过程:依次执行try后面的代码块,一旦遇到异常,就马上执行except后面的代码块。执行完后再执行其他的代码。
    如果try里面的代码块没有异常,就不执行except后面的代码,而执行其他的代码。
    '''
    a = [1,2,3,5]
    try:
        print(a[5])
    except:
        print('捕获到异常')
    2.形式二
    try:
      需要捕获异常的代码块(可能会出现异常的代码块)
    except 错误类型:
      出现异常后执行的代码
    '''
    执行过程:依次执行try后面的代码块,一旦遇到指定的异常,就马上执行except后面的代码块。执行完后再执行其他的代码。
    如果try里面的代码块没有指定的异常,就不执行except后面的代码,而执行其他的代码
    '''
    a = [1,2,3,5]
    try:
        print(a[5])
    except IndexError:
        print('捕获到异常')
    
    a = [1,2,3,5]
    try:
        print(a[5])
    except (IndexError,KeyError):
        print('捕获到异常')
    
    
    
    
    #程序出现异常,但是不想应为这个异常而让程序崩溃.这个时候就可以使用异常捕获机制
    
    
     ef
     input():
     num1 = int(input('请输入一个数'))
     num2 = int(input('请输入一个数'))
     print('%f/%f = %f' % (num1, num2, num1 / num2))
    
    import pygame
    

    作业

    1.提取data.json中的数据,将每条数据中的name、text、love和comment信息。并且保存到另外一个json文件中

    import json
    with open('./data.json','r',encoding='utf-8') as f:
        content = json.load(f)
    name, text, love, comment = [],[],[],[]
    for index in range(len(content['data'])):
        name.append(content['data'][index]['name'])
        text.append(content['data'][index]['text'])
        love.append(content['data'][index]['love'])
        comment.append(content['data'][index]['comment'])
    info = {'name':name,'text':text,'love':love,'comment':comment}
    with open('./info.json','w',encoding='utf-8') as f1:
        json.dump(info,f1)
    

    2.统计data.json中comment数量超过1000的个数并且

    import json
    count = 0
    with open('./data.json','r',encoding='utf-8') as f:
        content = json.load(f)
    len1 = len(content['data'])
    for index in range(len1):
        if int(content['data'][index]['comment']) > 1000:
            count += 1
    print(count)
    结果:
    0
    

    3.将data.json文件中所有点赞数(love)对应的值超出1000的用k来表示,例如1000修改为1k, 1345修改为1.3k

    import json
    with open('./data.json','r',encoding='utf-8') as f:
        content = json.load(f)
    for index in range(len(content['data'])):
        str1 = (str(int(content['data'][index]['love']) / 1000)+'k')
        content['data'][index]['love'] = str1
    with open('./data.json','w',encoding='utf-8') as f1:
        content1 = json.dump(content,f1)
    

    4.写猜数字游戏,如果输入有误,提示重新输入,直达输入正确为止。比如:输入数字的时候没有按要求输入,提示重新输入

    import random
    while True:
        n = random.randint(1,100)
        try:
            n1 = int(input('输入你想猜的数字:'))
        except ValueError:
            print('输入错误!请重新输入!')
            continue
        if n1 < n:
            print('小啦是不是傻!')
            continue
        elif n1 > n:
            print('大啦你吃多咯吗?')
            continue
        elif n1 == n:
            print('恭喜你 ')
            break
    

    5.写学生管理系统的添加学生功能(数据需要本地化),要求除了保存学生的基本信息以外还要保存学生的学号,但是学号需要自动生成,生成原则:
    添加第一个学生对应的学号是:py001
    第二次添加的学生的学号是:py002
    ...
    如果前面的学生因为各种原因被移除了,那后面添加学生的时候原则不变,就是比如上次已经添加到py012,那么前面不管有没有删除情况,再次添加学生的学号是py013

    import json
    def add_student():
        try:
            user_name = input('请输入你的名字:')
            user_age = int(input('年纪:'))
            user_sex = input('性别:')
        except:
            add_student()
    
        stu = operation()
    
        if len(stu['student_info']) == 0:
            id = 0
        else:
            for x in stu['student_info']:
                id = x['id']
        stu_info ={'id':id+1,'name':user_name,'age':user_age,'sex':user_sex}
        stu['student_info'].append(stu_info)
        print(stu)
        main_write(stu)
    
    
    
    def operation():
        try:
            with open('./stu_system.json','r',encoding='utf-8') as f:
                str1 = json.load(f)
                return str1
        except FileNotFoundError:
            add_sys()
    
    
    def add_sys():
        with open('./stu_system.json', 'w', encoding='utf-8') as f1:
            info = {"class":"python1806","student_info":[]}
            json.dump(info,f1)
            operation()
    
    
    def main_write(stu):
        with open('./stu_system.json','w',encoding='utf-8') as f:
            json.dump(stu,f)
    
    add_student()
    '''
    {"class": "python1806", "student_info": [{"id": 1, "name": "txf", "age": 11, "sex": "nan"}, {"id": 2, "name": "aa", "age": 11, "sex": "bb"}]}
    

    相关文章

      网友评论

          本文标题:day11文件操作捕获异常作业

          本文链接:https://www.haomeiwen.com/subject/gzwwwftx.html