how to send one variable to python using xlwings
RunPython ("import Test; Test.sayhi('" & name & "')")
Here is what the above code is Doing:
1. Create a new Python interpreter.
2. Import the Test module.
3. Call the sayhi function in the Test module.
4. Destroy the Python interpreter.