We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Is there a way to access instance variables from Python.
For example, say I have go struct:
type Point struct { X int Y int }
Is there a way to access struct members in python:
print(point.X) # or print(point.x)