Skip to main content

This package lets you display lists in form of tables!

Project description

This package lets you display lists in form of tables!

to import it we run

import tangly

Now see what we can do to display a table with students and scores:

First we create a list with our data:

my_list = [["Johny", "57"],
	   ["Nath", "89"],
	   ["Alex", "78"],]

Here we defined our list of students and their respective scores. To display this as a table we use the 'table()' command:

tangly.table(my_list)

This will be the output:

| first  | second  |
--------------------
| Johny  | 57      |
| Nath   | 89      |
| Alex   | 78      |

Notice that the columns names are 'first' and 'second'. To change this we use some additional parameters:

tangly.table(my_list, 'Student' , 'Score' )

This will be the output:

| Student  | Score  |
---------------------
| Johny    | 57     |
| Nath     | 89     |
| Alex     | 78     |

Much Better.

For help inside python type:

tangly.help()

Project details


Download files

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

Source Distribution

Tangly-1.1.0.tar.gz (1.8 kB view hashes)

Uploaded Source

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