Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

print progress without next line python

def f():
     print('xy', end='')
     print('
zz')
 
f()

>> zz // 
 make cursor reset to the start of the line and over-write any text after that
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #print #progress #line #python
ADD COMMENT
Topic
Name
4+8 =