Do you like reading books? If you do, then you must have encountered texts that have quite a wide space with dots in between them, just like pausing or thinking before proceeding the narration. Let's try doing that here in Python,
print(input())
for _ in range(3):
print('.')
print(input())
Comments
Leave a comment