运行程序时遇到的哪些bug

未完、待续,持续更新中!


文章目录

  • 前言
  • 一、source code string cannot contain null bytes


前言

未完、待续,持续更新中!

问题?解决方法............


一、python中导入包中的模块出现ValueError: source code string cannot contain null bytes问题的解决

问题描述:

Traceback (most recent call last): File “D:\Python\Python37\Lib\idlelib\python\xxxxx.py”, line 1, in  import m1.temperatureconversion as tc ValueError: source code string cannot contain null bytes
 

解决办法:

第一种原因:
这是因为导入模块中出现了多余的空字符,放在word文档中找一下,再删去即可。
第二种原因:
新建的__init__.py文件存在多余的空字符,这里最好为空文件(我就是忘记清空了才出现这个问题的)。

你可能感兴趣的:(bug问题,python)