Print label in ascii pritn

This commit is contained in:
Lukáš Plevač 2023-11-15 19:30:55 +01:00
parent ee8ae8797c
commit 7dd7b3ed6e
2 changed files with 17 additions and 7 deletions

View File

@ -100,3 +100,13 @@ def showMolecule(molecule, spacing = ""):
for line in reversed(Invlines):
print(spacing.join(line))
# print bases in bottom
label = []
for i in range(len(molecule)):
if (molecule.getBase(0, i) != nothing):
label.append(molecule.getBase(0, i) + spacing)
else:
label.append(" " + spacing)
print("".join(label))