example.exec(filePath)

  • 执行指定的python脚本文件。
  • 参数描述
    1. filePathstring类型, 要执行python脚本文件的绝对路径

demo

  1. # 假设有文件test.py,内容如下
  2. def myprint():
  3. count = 10
  4. while count > 0:
  5. count -= 1
  6. print('##### test #####')
  7. myprint()
  8. #将test.py文件上传到模块中,进入命令行执行如下代码
  9. >>> uos.listdir('/usr/')
  10. ['apn_cfg.json', 'test.py']
  11. >>> import example
  12. >>> example.exec('/usr/test.py')
  13. # 执行结果如下
  14. ##### test #####
  15. ##### test #####
  16. ##### test #####
  17. ##### test #####
  18. ##### test #####
  19. ##### test #####
  20. ##### test #####
  21. ##### test #####
  22. ##### test #####
  23. ##### test #####