(Maybe this belongs in Coding, but since it involves Python's interaction with the rest of my computer, I figured I'd try it here first, since it's not all about code? I'm bad when it comes to this sort of thing.)
I'm attempting to write a program in Pygame to make dropdown menus. This requires making text on the screen. So I'd like to be able to put text on the screen. Unfortunately, Python doesn't seem to be able to find its fonts. If I say "print pygame.font.get_fonts()", it replies "[None]". If I say "print pygame.font.get_default_font()", it tells me "freeansbold.ttf", but if I search my computer for the string "freeans", it doesn't find anything.
I know where my computer keeps some fonts (or at least a lot of .ttf files with names like "Arial" and "TimesRoman"), but I don't know how to tell Pygame to look there to find them. I don't even know where it's looking now. Does anyone know how to add a directory to the font-finding path or something?
