【学习记录而已】sublimetext中文乱码问题

{
   "cmd": ["D://Python38//python.exe","-u","$file"],
   "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
   "selector": "source.python",
   "encoding": "utf-8" ,
   "env": {"PYTHONIOENCODING": "utf8"}
}
#!/usr/bin/python
# -*- coding:utf-8 -*-
import pandas as pd
import openpyxl
fileNameStr='F:\\pictures\\JJLS.xlsx'
xl=pd.ExcelFile(fileNameStr)
patientDf=xl.parse('Sheet1')
print(patientDf)
print(type(patientDf))


猜你喜欢

转载自blog.csdn.net/book_dw5189/article/details/121463179
今日推荐