Python Programming - Console Input/Output - Discussion

Discussion Forum : Console Input/Output - General Questions (Q.No. 6)
6.
How can you clear the screen in a Python console application?
console.clear()
os.clear()
clear()
os.system("clear")
Answer: Option
Explanation:
You can use os.system("clear") to clear the screen in a Python console application.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.