Example in C:

for (int i = 0; i < 4; i++)
    printf(".");

Output:

....

In Python:

>>> for i in range(4): print('.')
.
.
.
.
>>> print('.', '.', '.', '.')
. . . .

In Python, print will add a \n or space. How can I avoid that? I’d like to know how to “append” strings to stdout.

2
24

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *