Skip to main content

Basically only a function to iterate through tuples and add their values. Example: (1,2)+(2,3)=(3,5)

Project description

The function flatten(*argv) takes an arbitrary amount of tuples and returns the sum of of each indices’ value. The tuples should have the same length.
Example:
>>> from tuple_flatten import flatten
>>> flatten((1, 5), (2, 7))
(3, 12)::
It is not necessary for all tuples to be equally sized, as long as each tuple in the arguments is either shorter or equally sized as its predecessor.
Example:
>>> flatten((1, 7), (3,))
(4, 7)::

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tuple_flatten-1.0.tar.gz (1.4 kB view hashes)

Uploaded Source

Built Distribution

tuple_flatten-1.0-py3-none-any.whl (2.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page