cpython/Tools/demo
Mariusz Felisiak 11749e2dc2
bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
2021-07-27 00:11:55 +02:00
..
beer.py
eiffel.py bpo-36743: __get__ is sometimes called without the owner argument (#12992) 2019-08-29 01:27:42 -07:00
hanoi.py bpo-38539: Update demo files (GH-16890) 2019-10-22 20:23:48 -07:00
life.py Some cleanup in the Tools directory. 2012-07-07 17:03:54 +02:00
markov.py bpo-22831: Use "with" to avoid possible fd leaks in tools (part 2). (GH-10927) 2019-03-30 08:33:02 +02:00
mcast.py
queens.py
README bpo-38539: Update demo files (GH-16890) 2019-10-22 20:23:48 -07:00
redemo.py bpo-33908: Remove two superfluous assignments (GH-7116) 2018-06-20 13:07:31 +08:00
rpython.py bpo-36690: Fix typo in Tools/demo/rpython.py (GH-12903) 2019-04-22 16:28:57 +03:00
rpythond.py bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378) 2021-07-27 00:11:55 +02:00
sortvisu.py bpo-38539: Update demo files (GH-16890) 2019-10-22 20:23:48 -07:00
spreadsheet.py bpo-38539: Update demo files (GH-16890) 2019-10-22 20:23:48 -07:00
vector.py Minor updates to the vector demo (GH-24853) 2021-03-15 19:53:58 -07:00

This directory contains a collection of demonstration scripts for
various aspects of Python programming.

beer.py           Well-known programming example: Bottles of beer.
eiffel.py         Python advanced magic: A metaclass for Eiffel post/preconditions.
hanoi.py          Well-known programming example: Towers of Hanoi.
life.py           Curses programming: Simple game-of-life.
markov.py         Algorithms: Markov chain simulation.
mcast.py          Network programming: Send and receive UDP multicast packets.
queens.py         Well-known programming example: N-Queens problem.
redemo.py         Regular Expressions: GUI script to test regexes.
rpython.py        Network programming: Small client for remote code execution.
rpythond.py       Network programming: Small server for remote code execution.
sortvisu.py       GUI programming: Visualization of different sort algorithms.
spreadsheet.py    GUI/Application programming: A simple spreadsheet application.
vector.py         Python basics: A vector class demonstrating special methods.