Prints the supported SBML Levels and Versions for this copy of libSBML.
50 supported = SBMLNamespaces.getSupportedNamespaces()
51 for i
in range(0,supported.getSize()):
52 current = supported.get(i)
53 print(
"\tSBML Level: " + str(current.getLevel()) +
54 " Version: " + str(current.getVersion()))