0 کاربر و 1 مهمان درحال مشاهده موضوع.
import cursestry: MainWindow=curses.initscr() # initialize curses MainWindow.addstr(“Hello, damn it!”) MainWindow.refresh() MainWindow.getch() # Read a keystrokefinally: curses.endwin() # de-initialize curses
#!/usr/bin/python# -*- coding: utf-8 -*-