How To Code in Python 3

How To Code in Python 3

This is a port of DigitalOcean’s How To Code in Python 3 tutorial series by Lisa Tagliaferri translated to LiaScript with interactive PyScript examples.

Start Course

This example uses the PyScript template which implements some basic macros for integrating the PyScript into LiaScript and to make Markdown code-blocks executable.

The GitHub repository for this project can be found here:

https://github.com/LiaBooks/How-To-Code-in-Python-3

… or try it out in the LiveEditor:

Related Posts

Lua Programming

This example is a port of the Lua programming course from the open wikibook Lua-Programming to LiaScript. It is a fully working Lua programming course, that can be used as a basis for your own course. Start Course This example uses the Lua template which implements the Lua interpreter and VM from interpreter and VM https://daurnimator.github.io. The only that is required to make Lua code snippets executable in LiaScript is to attach the @LUA.

Read More

Embedding Multimedia and More

There are 4 ways in LiaScript to embed multimedia content: the classical way ![alt](image-url) sound ?[alt](sound-url) video !?[alt](video-url] for everything else ??[alt](url) You can use this this example as a basis for your own course by following this link … Or experiment with it in the LiveEditor below:

Read More

Macros

How can you define custom macros or even define reusable LiaScript libraries? Just use @ followed by a custom name for your macro You can add parameters Shortcut macros, that call others predefined parameters And block-macros not that difficult You can use this this example as a basis for your own course by following this link … Or experiment with it in the LiveEditor below:

Read More