-2
  File "C:\Users\a small youtuber idk\Downloads\from curses import ACS_RARROW.py", line 2, in <module>
    from curses import ACS_DARROW, ACS_LARROW, ACS_RARROW, ACS_UARROW

i tried importing _curses and curses but nothg is working

Barmar
  • 741,623
  • 53
  • 500
  • 612

1 Answers1

1

If you check the documentation at https://docs.python.org/3/library/curses.html, you'll see:

Note: These are available only after initscr() has been called.

The values are different on different operating systems, so the module has to ask the underlying library for the correct values.

Tim Roberts
  • 48,973
  • 4
  • 21
  • 30