Skip to content

Commit fb2d2f7

Browse files
committed
adding \n between dem
1 parent 61dd455 commit fb2d2f7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
0 Bytes
Binary file not shown.

example.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ def main():
5151

5252
# Length of the sparse matrix
5353
print("Length of M1:")
54-
print(len(m1))
54+
print(len(m1), "\n")
5555

5656
# Convert the sparse matrix to hash
5757
print("Hash of M1:")
58-
print(hash(m1))
58+
print(hash(m1), "\n")
5959

6060
# Cast to bool
6161
print("Bool of M1:")
62-
print(bool(m1))
62+
print(bool(m1), "\n")
6363

6464
# Delete an element from the sparse matrix
6565
print("Delete M1[0, 0]:")

0 commit comments

Comments
 (0)