From 1d92ade9e91d3f24e690b0b65374ac1050acaa7d Mon Sep 17 00:00:00 2001 From: Jonah Lawrence Date: Tue, 27 Apr 2021 15:16:36 +0300 Subject: [PATCH] Update second example --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 223afa8..695d242 100644 --- a/README.md +++ b/README.md @@ -51,16 +51,16 @@ print(output) from table2ascii import table2ascii output = table2ascii( - body=[["1", "30", "40", "35", "30"], ["2", "30", "40", "35", "30"]] + body=[["Assignment", "30", "40", "35", "30"], ["Bonus", "10", "20", "5", "10"]] ) print(output) """ -╔═════╦═══════════════════════╗ -║ 1 ║ 30 40 35 30 ║ -║ 2 ║ 30 40 35 30 ║ -╚═════╩═══════════════════════╝ +╔════════════╦═══════════════════╗ +║ Assignment ║ 30 40 35 30 ║ +║ Bonus ║ 10 20 5 10 ║ +╚════════════╩═══════════════════╝ """ ```