Jump to content

Learnbox: Difference between revisions

From Torben's Wiki
 
(No difference)

Latest revision as of 17:14, 2 December 2024

Learnbox

Learnbox is great learning app for vocabulary etc. It is a digital implementation of Flashcard / DE: Lernkartei system. It is free to use and you can easily import and share your learning material.

Imports

1x1

Import format

Math / 1x1:
9 / 3x3
12 / 4x3
16 / 4x4
15 / 5x3
20 / 5x4
25 / 5x5
18 / 6x3
24 / 6x4
30 / 6x5
36 / 6x6
21 / 7x3
28 / 7x4
35 / 7x5
42 / 7x6
49 / 7x7
24 / 8x3
32 / 8x4
40 / 8x5
48 / 8x6
56 / 8x7
64 / 8x8
27 / 9x3
36 / 9x4
45 / 9x5
54 / 9x6
63 / 9x7
72 / 9x8
81 / 9x9

Python script used for generation

print("Math / 1x1:")
for x in range(3, 10):
    for y in range(3, x + 1):
        print(f"{x*y} / {x}x{y}")