You are not logged in.
Pages: 1
Hi,
Could any one help me with this python code,
Why it doesn't print the A? on an xterm
It should work according to the docs
http://docs.python.org/library/curses.h … ses.newpad
Regards
import curses
if __name__="__main__":
#initializing screen
screen = curses.initscr()
curses.noecho()
curses.cbreak() #respond to keys inmidiatly
pad = curses.newpad(10,10)
pad.addch(1,1,'A')
pad.refresh(0,0,0,0,10,10)
screen.refresh()
screen.getch()
#finalizing screen
curses.nocbreak()
curses.echo()
curses.endwin()
Last edited by pepeapepepe (2010-01-27 03:16:59)
.--.-.... --. .-.-.-..-.-..--....- .- .-...-... --..-..-... -.-.----. ..-.. ...------....-...-.-----..-- .-....---.-..- --. .-.-.-..-.-.--- .-...-... --..-..-... -.-.----. .-...- -......-...-...-..-..-
Offline
Thanks mikesd,
You are the best
.--.-.... --. .-.-.-..-.-..--....- .- .-...-... --..-..-... -.-.----. ..-.. ...------....-...-.-----..-- .-....---.-..- --. .-.-.-..-.-.--- .-...-... --..-..-... -.-.----. .-...- -......-...-...-..-..-
Offline
No problem. Curses in python is pretty cool. I'm using it myself at the moment. Check out curses.wrapper[1]. It makes it much easier to debug your application when it starts throwwing exceptions.
Offline
Pages: 1