Metadata-Version: 2.1
Name: divisionbeads
Version: 0.1.3
Summary: A small Python CLI app of the "divison beads" math education tool.
Home-page: https://github.com/asweigart/divisionbeads
Author: Al Sweigart
Author-email: al@inventwithpython.com
License: MIT
Description: # divisonbeads
        A small Python CLI app of the "divison beads" math education tool.
        
        By Al Sweigart al@inventwithpython.com
        
        "Division beads" are a concept I came up with to visualize divison. A string of beads is laid out in a rectangular area. The quotient and remainder can be found through simple counting. For example:
        
            $ python3 -m divisionbeads
            Enter a division problem (example: 23 / 7) or QUIT.
            > 23 / 7
        
            23 / 7 = 3 r 2
        
             ├─────7─────┤
        
             O─O─O─O─O─O─O┐ ┬
            ┌O─O─O─O─O─O─O┘ 3
            └O─O─O─O─O─O─O┐ ┴
                       O─O┘
        
                       ├2┤
        
            Enter a division problem (example: 23 / 7) or QUIT.
            > 40 / 10
        
            40 / 10 = 4 r 0
        
             ├────────10───────┤
        
             O─O─O─O─O─O─O─O─O─O┐ ┬
            ┌O─O─O─O─O─O─O─O─O─O┘ 4
            └O─O─O─O─O─O─O─O─O─O┐ │
             O─O─O─O─O─O─O─O─O─O┘ ┴
        
        
             0
        
            Enter a division problem (example: 23 / 7) or QUIT.
            > 42 / 10
        
            42 / 10 = 4 r 2
        
             ├────────10───────┤
        
             O─O─O─O─O─O─O─O─O─O┐ ┬
            ┌O─O─O─O─O─O─O─O─O─O┘ 4
            └O─O─O─O─O─O─O─O─O─O┐ │
            ┌O─O─O─O─O─O─O─O─O─O┘ ┴
            └O─O
        
             ├2┤
        
            Enter a division problem (example: 23 / 7) or QUIT.
            > quit
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
