Skip to content

Instantly share code, notes, and snippets.

@kunishi
Created April 27, 2022 05:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunishi/97b966526c8b5f5df699c17231b9cdb0 to your computer and use it in GitHub Desktop.
Save kunishi/97b966526c8b5f5df699c17231b9cdb0 to your computer and use it in GitHub Desktop.
i = 0; s2 = ''
while i < 5:
i += 1
s2 = s2 + 'Q' * i + '\n'
print(s2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment