Skip to content

Commit 1d92ade

Browse files
authored
Update second example
1 parent ddcf922 commit 1d92ade

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,16 @@ print(output)
5151
from table2ascii import table2ascii
5252

5353
output = table2ascii(
54-
body=[["1", "30", "40", "35", "30"], ["2", "30", "40", "35", "30"]]
54+
body=[["Assignment", "30", "40", "35", "30"], ["Bonus", "10", "20", "5", "10"]]
5555
)
5656

5757
print(output)
5858

5959
"""
60-
╔════════════════════════════╗
61-
1 ║ 30 40 35 30 ║
62-
2 ║ 30 40 35 30
63-
╚════════════════════════════╝
60+
╔════════════╦═══════════════════╗
61+
Assignment ║ 30 40 35 30 ║
62+
Bonus ║ 10 20 5 10
63+
╚════════════╩═══════════════════╝
6464
"""
6565
```
6666

0 commit comments

Comments
 (0)