I have VBA function and I’m trying to convert this application in Python.
Now I need to translate the following VBA code:
Dim R_SH(1 To 3, 1 To 3) As Double
in Python.
I tried to write the following Python code but I think that is not correct:
w, h = 2, 3
R_SH = [[0 for x in range(w)] for y in range(h)]
Could we support me?