Last active
March 8, 2017 13:14
-
-
Save folksilva/b78512c04730d7f9ebd23176f7a48035 to your computer and use it in GitHub Desktop.
Homage to the International Women's Day
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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