作为一个小项目,我想制作一个电影建议程序 我将使用Web爬网程序从imdb获取电影列表。我已经用python制作了网络爬虫,但是我讨厌python的GUI,所以我将使用VB。我只编码了2年,而我才15岁,所以我不会理解任何超级复杂的注释。感谢您的帮助
答案 0 :(得分:0)
是的。使用VB Process.Start(...)
Dim pythonProcess As New Process()
With pythonProcess
.StartInfo.FileName = "python"
.StartInfo.Arguments = yourScriptFileName
.Start()
End With