如何在导入python模块并测试该特定模块的shell脚本中运行python代码?
例如: 来自_some_path_ import File_We_Want_To_Test
if(File_We_Want_To_Test.Function_We_Want_To_Test(a, b) == True):
print("great!")
else:
print("bad!")
答案 0 :(得分:0)
您可以在shell中使用Python,如下所示:
python -c command
其中命令是一个小型Python程序(带引号的字符串)。
示例:
python -c "import my_module; my_module.function()"