Laby currently supports programming of the ant in the Python language version 2.
Python 2 was released 20 years ago and was officially discontinued at the beginning this year. Python 3, version 3.5 and later, are the currently supported releases. Some Linux distributions are now no longer including Python 2 as part of the distribution.
This pull request is for providing Python 3 as a language for Laby. Four new files are added:
Support for the Python 3 Language
Laby currently supports programming of the ant in the Python language version 2.
Python 2 was released 20 years ago and was officially discontinued at the beginning this year. Python 3, version 3.5 and later, are the currently supported releases. Some Linux distributions are now no longer including Python 2 as part of the distribution.
This pull request is for providing Python 3 as a language for Laby. Four new files are added:
To highlight some of the changes between the Python 2 and Python 3 robot.py files:
output()
andinput()
functions have been removed.import sys;
is removed.sys.stdout.write()
andsys.stdout.flush()
are replaced by the prompt feature of Python3 builtin input() function.sys.stdin.readline()
is replaced by the Python 3 builtin input() function.look()
the string received by input() is returned without adding the complexity of enumerated constants.The help, rules, and skel files have had minor modifications from their Python 2 versions to make them suitable for use with Python 3.
Upon implementing support in Laby for the Python 3 language, the Python 2 functionality should be deprecated.
Regards, Ian Stewart. 2020-05-21