关于‘包’出错了 ValueError: source code string cannot contain null bytes
我用的是小甲鱼书带的代码(p13_8.py)和(M1)在同一个路径,(M1)里面有(__init__.py)和(p13_7.py))
# p13_8.py
# 请先按步骤将p13_7.py放在了文件夹M1中
import M1.p13_7 as tc
print("32摄氏度 = %.2f华氏度" % tc.c2f(32))
print("99华氏度 = %.2f摄氏度" % tc.f2c(99))
# p13_7.py
def c2f(cel):
fah = cel * 1.8 + 32
return fah
def f2c(fah):
cel = (fah - 32) / 1.8
return cel
def test():
print("测试,0摄氏度 = %.2f华氏度" % c2f(0))
print("测试,0华氏度 = %.2f摄氏度" % f2c(0))
if __name__ == '__main__':
test()
执行后报错:
(回溯(最后调用):
File "D:\Python3.5.2\代码存放\p13_8.py", line 3, in <module>
import M1.p13_7 as tc
ValueError: source code string cannot contain null bytes)
请问一下如何解决
看看这下面的解决方法能不能帮助你解决问题:
https://blog.csdn.net/qq_40247705/article/details/95108826
是__init__.py的问题重新建了一个好了
页:
[1]