How do I count from 1 to 10 with the line removed when it ends?? on python
Advertisement
Answer
try that:
JavaScript
x
3
1
for i in range(11):
2
print(f'r{i}', end='')
3
To see the result slowly:
JavaScript
1
6
1
import time
2
3
for i in range(11):
4
print(f'r{i}', end='')
5
time.sleep(1)
6