Python is pretty easy. In Python 3 (what you ought to use; Python 2 is being phased out), you print with the print function (e.g. ``print("Hello, world!")``) and get text input with the input function (e.g. ``a = input("What's your name? ")``). I don't know what gosub does. As an aside, there's no such thing as a goto in Python, so your use of that would have to be replaced with while loops or for loops.

The Python documentation is available at docs.python.org. You can usually get help at the #python IRC channel on Freenode.

Reply via email to