Hi I'm trying to make a tic-tac-toe game in Python and I've run into a problem.
As you can see on the picture it rewrites the playing board after input, what I want it to do is to clear the output and then rewrite the board. So instead of just printing new boards all the time it only clears the current board and rewrites it. I've searched on "clear output" etc, but found only these snippets:
import os
clear = lambda: os.system('cls')
or
import os
def clear():
os.system('cls')
However, it doesn't work for me. It only returns this symbol:
I am currently writing my code in PyCharm and just to make it clear, I want to keep it in PyCharm.
Adding following in jupyter worked for me:
from IPython.display import clear_output
clear_output(wait=True)
I see a syntax error from your code, you are missing the ":".
clear = lambda : os.system('cls')
However avoid lambda and define a function for clear because it is easier to read.
def clear():
os.system( 'cls' )
then you can clear the window with:
clear()
Code to clear console output in Python for Linux:
def clear():
os.system('clear')
First, install IPython using the Python package installer pip:
pip install IPython
In your script write the following
form IPython.display import clear_output
I guess by now it should be working
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With