programming

  1. C

    Run Python right from your browser

    Using Pyodide Pyodide is the created by compiling the default Python interpreter to webassembly - a technology that is supported by the browsers. Many (but not all) of the 3rd party Python packages are supported. You can play around with Python on your browser without having to install it...
  2. C

    Python Koans: Learn Python Programming By Making Tests Pass

    Python Koans is an interactive tutorial for learning the Python programming language by making tests pass. Most tests are fixed by filling the missing parts of assert functions. Eg: which can be fixed by replacing the __ part with the appropriate code: Occasionally you will encounter some...
Top