Skip to content

Instantly share code, notes, and snippets.

@folksilva
Last active March 8, 2017 13:14
Show Gist options
  • Save folksilva/b78512c04730d7f9ebd23176f7a48035 to your computer and use it in GitHub Desktop.
Save folksilva/b78512c04730d7f9ebd23176f7a48035 to your computer and use it in GitHub Desktop.
Homage to the International Women's Day
#!/usr/bin/env python
def women_day():
print(" ." + (":" * 3) + "." + (" " * 3) + "." + (":" * 3) + ".")
print((":" * 7) + "." + (":" * 7))
print(":" * 15)
print("'" + (":" * 13) + "'")
print((" " * 2) + "'" + (":" * 9) + "'")
print((" " * 4) + "'" + (":" * 5) + "'")
print((" " * 6) + "':'")
if __name__ == '__main__':
women_day()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment