您可以使用Visual Basic运行python文件吗

时间:2019-03-15 19:48:53

标签: python

作为一个小项目,我想制作一个电影建议程序 我将使用Web爬网程序从imdb获取电影列表。我已经用python制作了网络爬虫,但是我讨厌python的GUI,所以我将使用VB。我只编码了2年,而我才15岁,所以我不会理解任何超级复杂的注释。感谢您的帮助

1 个答案:

答案 0 :(得分:0)

是的。使用VB Process.Start(...)

Dim pythonProcess As New Process()
With pythonProcess
    .StartInfo.FileName = "python"
    .StartInfo.Arguments = yourScriptFileName
    .Start()
End With