I am trying to print the symbol pi to the terminal using curses.ACS_PI, but whenever I do so, it returns an error:
>>> import curses
>>> print(curses.ACS_PI)
AttributeError: module 'curses' has no attribute 'ACS_PI'
How do I get it to print pi to the terminal screen?