Skip to content

Instantly share code, notes, and snippets.

@artemrys
Last active December 27, 2018 11:21
Show Gist options
  • Save artemrys/586e3ed7a62b7924192156eabccd46a8 to your computer and use it in GitHub Desktop.
Save artemrys/586e3ed7a62b7924192156eabccd46a8 to your computer and use it in GitHub Desktop.
Python multiplication magic
print(3 * 3)
# 9
print((3).__mul__(3))
# 9
print("Abc" * 3)
# 'AbcAbcAbc'
print("Abc".__mul__(3))
# 'AbcAbcAbc'
print(3 * "Abc")
# 'AbcAbcAbc'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment