11 lines
222 B
Python
11 lines
222 B
Python
|
class SimplePrintr():
|
||
|
@classmethod
|
||
|
def write(string, commit=False):
|
||
|
if commit:
|
||
|
print(string)
|
||
|
else:
|
||
|
print(string, end='\r')
|
||
|
|
||
|
@classmethod
|
||
|
def commit():
|
||
|
print()
|