please,
is it possible to print out every style that each of the listed typefaces has? So I know that for example Arial has Bold, Regular, Italic and whatever else. Thanks! Or would you recommend some other tool for doing this? I am on Windows 7.
import matplotlib.font_manager
#help(matplotlib.font_manager)
fonts = [f.name for f in matplotlib.font_manager.fontManager.ttflist]
print(len(fonts))
for i in fonts:
print(i)