SYSTEM CLEAR in Python?

Anybody knows the syntax of system clear in Python? In visual c++, this is the code for system clear: -> system("cls") tnx!!! -- Angelo Cruz CSIT-Computer Network Engineer Asia Pacific College ________________________________________________________________________________________ This email message was delivered to you by <http://www.apc.edu.ph> Asia Pacific College. Scanning and Virus Filtering is delivered by <http:///www.ravantivirus.com> RAV Antivirus. For more information, please visit our website or email the system administrators at mailto:sysadmins@apc.edu.ph.

import os os.system( 'cls' ) HTH, Mike abc-100036@apc.edu.ph wrote:
Anybody knows the syntax of system clear in Python? In visual c++, this is the code for system clear: -> system("cls") tnx!!!
_______________________________________ Mike C. Fletcher Designer, VR Plumber, Coder http://members.rogers.com/mcfletch/

On Fri, 28 Nov 2003 abc-100036@apc.edu.ph wrote:
Anybody knows the syntax of system clear in Python? In visual c++, this is the code for system clear: -> system("cls")
Hello, If you have general Python learning questions, please feel free to ask on Python-Tutor --- it's a mailing list dedicated for learning Python. http://mail.python.org/mailman/listinfo/tutor Your question may not be so appropriate on edu-sig, so you may not get the responses you desire. Please be more selective next time. Anyway, it sounds like you're looking for os.system(). For more information, see: http://www.python.org/doc/lib/os-process.html#l2h-1519 If you have questions on how to use it, please feel free to ask on Python-Tutor. Good luck to you.
participants (3)
-
abc-100036@apc.edu.ph
-
Danny Yoo
-
Mike C. Fletcher