Python 에서 json 파일 을 엑셀 표 로 읽 기

1416 단어 Pythonjsonexcel
본 논문 의 사례 는 Python 이 json 파일 을 엑셀 표 로 읽 는 것 을 실현 하 는 것 을 공유 하 였 으 며,구체 적 인 내용 은 다음 과 같다.
수요
1.'score.json'파일 내용:

{
  "1":["  ",99,100,98.5],
  "2":["  ",90,30.5,95],
  "3":["  ",67.5,49.6,88]
}
2.json 파일 을 읽 어 데이터베이스 에 저장 하고 모든 사람의 총 점 과 평균 점 수 를 계산한다. 
구현 코드

import json, xlwt


def read_score(jsonfile):
  with open(jsonfile, encoding='utf-8') as f: #  json       
    score_all = json.load(f)

  book = xlwt.Workbook() #   excel  
  sheet = book.add_sheet('sheet1') #      
  title = ['  ', '  ', '  ', '  ', '  ', '  ', '   ']
  for col in range(len(title)): #        
    sheet.write(0, col, title[col])
  row = 1 #    
  for k in score_all:
    data = score_all[k] # data        list
    data.append(sum(data[1:4])) #          
    data.append(sum(data[1:4]) / 3.0) #          
    data.insert(0, k) #        
    for index in range(len(data)): #        
      sheet.write(row, index, data[index])
    row += 1
  book.save('score.xls')


read_score('score.json')

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기