This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients serhiy.storchaka, xxm
Date 2021-01-18.15:59:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1610985547.42.0.989931622092.issue42951@roundup.psfhosted.org>
In-reply-to
Content
Funny. But the output is not random. You can generate the sequence of letters by the following simple loop:

s = ''
for i in range(n):
    s = f'a{s}b{s}'

The length of this sequence is 2*(2**n-1). Finally, your code will raise a non-silenced RecursiveError, but it will just take some time (for printing around 2**1000 letters).
History
Date User Action Args
2021-01-18 15:59:07serhiy.storchakasetrecipients: + serhiy.storchaka, xxm
2021-01-18 15:59:07serhiy.storchakasetmessageid: <1610985547.42.0.989931622092.issue42951@roundup.psfhosted.org>
2021-01-18 15:59:07serhiy.storchakalinkissue42951 messages
2021-01-18 15:59:07serhiy.storchakacreate