hello, i want some tricks how can i transfer or pass one variable to vbs variable , is there any function or trick . | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

hello, i want some tricks how can i transfer or pass one variable to vbs variable , is there any function or trick .

see the ex. like this .py l="hii" print(l) .vbs dim h i want to transfer l to h , how can i do it.

11th Jun 2018, 1:41 PM
Priyajit Nayak
Priyajit Nayak - avatar
3 Answers
+ 1
Usually Sockets are used for communication between processes or machines as long as the programming language supports them, most of them are. It is also possible to run external process from within another process using system tools. another way would be to use shared resource, text file for example.
11th Jun 2018, 10:58 PM
Qwertiony
Qwertiony - avatar
+ 3
VBScript doesn't recognize Python's syntax or variable, I don't see how these two languages can cooperate in a simple way, they have different processing engine Python uses it's interpreter and VBScript uses Microsoft scripting, neither can communicate to another (cmiiw)
11th Jun 2018, 3:48 PM
Ipang
+ 1
I don't understand your problem could you explain more? Especially what is "vbs" ?
11th Jun 2018, 2:10 PM
Julien Lord Maring
Julien Lord Maring - avatar