Skip to content

Instantly share code, notes, and snippets.

@sheepla
Last active June 28, 2024 11:27
Show Gist options
  • Save sheepla/e9ac16e4e4c587743082f3ac692695a0 to your computer and use it in GitHub Desktop.
Save sheepla/e9ac16e4e4c587743082f3ac692695a0 to your computer and use it in GitHub Desktop.
๐ŸฆŒ ใ—ใ‹ใฎใ“ใฎใ“ใฎใ“ใ“ใ—ใŸใ‚“ใŸใ‚“ in Python ๐Ÿ
print(
"".join(
[
pair[0] * pair[1]
for pair in [("ใ—ใ‹", 1), ("ใฎใ“", 3), ("ใ“ใ—", 1), ("ใŸใ‚“", 2)]
]
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment