atom-community / atom-community/atom-script
print not show when i use print(end="\r")
Open
- Dominant language
- JavaScript
- Stars
- 730
- Forks
- 264
- PR merge metrics
- No merged PRs in 30d
Description
```python
while 1:
print("test message", end="\r")
time.sleep(1)
```
output is nothing.
```python
while 1:
print("test message")
time.sleep(1)
```
is ok.
Contributor guide
Assessment
This issue has not been assessed yet.