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 ║ +╚════════════╩═══════════════════╝ """ ```