Labview调用Python脚本

Posted 浪迹枫叶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Labview调用Python脚本相关的知识,希望对你有一定的参考价值。

Labview程序框图如下:

Python脚本如下:

#!/usr/bin/env python
import sys

#Command Line Arguements are stored in list argv
numArgs = len(sys.argv) - 1
sum = 0

#Iterate through each element and add to the sum
for n in range (1, len(sys.argv)):
  sum = sum + int(sys.argv[n])

sum = int(sys.argv[1]) - int(sys.argv[2])

#use the print function to output the sum
print sum

脚本.py文件在这种情况下需要放在当前VI的文件目录下。

以上是关于Labview调用Python脚本的主要内容,如果未能解决你的问题,请参考以下文章

怎么在python脚本中调用其它的python脚本运行?

azkaban怎么在job里面直接调用python脚本啊,我调用shell脚本正常运行,调用python脚本没有运行

如何在网页中调用python脚本?

shell调用python脚本,并且向python脚本传递参数

如何在调用 python 脚本时捕获 python 脚本的结果? [复制]

在一个python脚本中调用另一个python脚本中的函数