Skip to content

Instantly share code, notes, and snippets.

@adibenc
Created August 17, 2020 10:25
Show Gist options
  • Select an option

  • Save adibenc/dfbbf9ceb36c9cf921b720ce4a2320ee to your computer and use it in GitHub Desktop.

Select an option

Save adibenc/dfbbf9ceb36c9cf921b720ce4a2320ee to your computer and use it in GitHub Desktop.
indo.py
# -- coding: utf-8 --
m='🔴'
p='⚪'
cnt = 20
line = 6
multiplier = 2
cnt *= multiplier
line *= multiplier
def indo():
for i in range(0,line):
print(m*cnt)
for i in range(0,line):
print(p*cnt)
indo()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment