kioku-space

As a personal memory space.

Python Interactive Guide - Step 2 Control Flow (6) - Pattern Matching (match statement)

Info
  • This course, Python Interactive Guide, is designed to help you learn the basics of Python programming through hands-on, interactive examples.
  • The “Style Guide” sections introduce clean coding practices, mainly based on PEP8.
  • You can run and experiment with every code example.
    Feel free to try things out - reloading the page will reset everything.

This is a continuation of “Step 2 Control Flow.”

Python Interactive Guide - Step 2 Control Flow (5) - Loops(3): Comprehensions

Info
  • This course, Python Interactive Guide, is designed to help you learn the basics of Python programming through hands-on, interactive examples.
  • The “Style Guide” sections introduce clean coding practices, mainly based on PEP8.
  • You can run and experiment with every code example.
    Feel free to try things out - reloading the page will reset everything.

This is a continuation of “Step 2 Control Flow.”

Python Interactive Guide - Step 2 Control Flow (4) - Loops (2): while Loops

Info
  • This course, Python Interactive Guide, is designed to help you learn the basics of Python programming through hands-on, interactive examples.
  • The “Style Guide” sections introduce clean coding practices, mainly based on PEP8.
  • You can run and experiment with every code example.
    Feel free to try things out - reloading the page will reset everything.

This is a continuation of “Step 2 Control Flow.”

Python Interactive Guide - Step 2 Control Flow (3) - Loops (1): for Loops

Info
  • This course, Python Interactive Guide, is designed to help you learn the basics of Python programming through hands-on, interactive examples.
  • The “Style Guide” sections introduce clean coding practices, mainly based on PEP8.
  • You can run and experiment with every code example.
    Feel free to try things out - reloading the page will reset everything.

This is a continuation of “Step 2 Control Flow.”

How to Make MkDocs Documentation Multilingual on Read the Docs

I added Japanese language support to the documentation of my library hosted on Read the Docs.
Since there wasn’t much information online about multilingual support for MkDocs, I had some difficulties, so I’m documenting the procedure here.

First, prepare the documents for your target language.
In my library, I created a ja directory under the docs directory and placed the Japanese documentation there.

Python Interactive Guide - Step 2 Control Flow (2) - Conditional Statements (2): Conditional Expressions, Ternary Operator

Info
  • This course, Python Interactive Guide, is designed to help you learn the basics of Python programming through hands-on, interactive examples.
  • The “Style Guide” sections introduce clean coding practices, mainly based on PEP8.
  • You can run and experiment with every code example.
    Feel free to try things out - reloading the page will reset everything.

This is a continuation of “Step 2 Control Flow”.