a python library convert carbon number (organic chemistry) into its English name
example
import carbon_name
print(
"the name of alkane with 11 carbons is",
carbon_name.carbon_name(11) + carbon_name.suffix("alkane")
)output
the name of alkane with 11 carbons is undecane
try to run test.py!
support range: 1~9999
