How does Udacity web Python interpreter work?

前端 未结 3 1980
长发绾君心
长发绾君心 2021-02-20 08:50

Udacity gives students a web editor to enter Python programs. The editor recognizes Python keywords and built-in functions and allows to run a program. Do you know how this tech

3条回答
  •  无人共我
    2021-02-20 09:43

    I haven't tried Udacity, but for the syntax highlighting parts, it can be easily done with a simple backend code, which is updated using some Ajax. One of the easiest ways can be used as lexical analyzing as in compilers or interpreters ..

提交回复
热议问题