Advertisement

实验9:测定溶液体积变化与表面特性(详细分析)

阅读量:
复制代码
  
    
 #作者:王日睿 
    
 #中国科学技术大学生命科学学院
    
 #2021.12.30
    
 #物理化学实验:实验09 溶液中的吸附作用和表面张力的测定
    
 # Jupyter lab
    
  
    
 import pandas as pd
    
 import os
    
 import numpy as np
    
 import matplotlib.pyplot as plt
    
 plt.rcParams['font.sans-serif'] = ['SimHei']  # 用来正常显示中文标签
    
 plt.rcParams['axes.unicode_minus'] = False  # 用来正常显示负号
    
  
    
    
    
    
复制代码
 # 数据转utf-8

    
 from chardet.universaldetector import UniversalDetector
    
  
    
 def get_filelist(path):
    
     Filelist = []
    
     for home, dirs, files in os.walk(path):
    
     for filen

全部评论 (0)

还没有任何评论哟~