Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Created February 6, 2022 07:12
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 fatosmorina/f66248c4d63da608ff674ad734970995 to your computer and use it in GitHub Desktop.
Save fatosmorina/f66248c4d63da608ff674ad734970995 to your computer and use it in GitHub Desktop.
string = "Abc"
result = ""
for i in range(5):
result += string
print(result) # AbcAbcAbcAbcAbc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment