Python与Excel

  • xlsx格式通过 openpyxl 模块打开; xls格式通过 xlwt 模块写, xlrd 模块读取。
#xls
#多行内容显现
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
  • import * 和 from…import… 的区别
    import 导入一个模块,相当于导入的是一个文件夹,相对路径。
    from…import… 导入了一个模块中的一个函数,相当于文件夹中的文件,绝对路径。
上一篇:base_file文件


下一篇:stm32使用DAP下载程序