Last active
October 2, 2016 19:41
-
-
Save anabastos/6324df1fce61a18ec967 to your computer and use it in GitHub Desktop.
triangulinho
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
n= input("Numero de linhas: ") | |
if n>1: | |
for i in range(n): | |
n-=1 | |
print " "*n+"."+" ."*i | |
else: | |
print(".") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment