mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
13 lines
262 B
Python
13 lines
262 B
Python
from contextlib import redirect_stdout
|
|
import io
|
|
|
|
|
|
while True:
|
|
with redirect_stdout(io.StringIO()) as f:
|
|
a = input('rgsert')
|
|
print(a)
|
|
res = f.getvalue()
|
|
print('-'*len(res))
|
|
print(res.replace('\n', ''))
|
|
print('-'*len(res))
|