This file contains hidden or 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
{ | |
".3g2": "video/3gpp2", | |
".3gp": "video/3gpp", | |
".7z": "application/x-7z-compressed", | |
".aac": "audio/aac", | |
".abw": "application/x-abiword", | |
".afm": "application/x-font-type1", | |
".ai": "application/postscript", | |
".aiff": "audio/x-aiff", | |
".arc": "application/x-freearc", |
This file contains hidden or 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
# Number of rows | |
rows = 4 | |
# Upper Triangle | |
k = 2 * rows - 2 | |
num = 0 | |
# Outer loop to handle number of rows | |
for i in range(rows): | |
# Inner loop to handle number of spaces |
OlderNewer