i=k=input()
while i:i-=1;print(" "*(k+~i)+"\\"+i*' / |\ '[i%2::2])[:k-~i]+"_/"[i>0:]
Pruébalo en línea!
¡Uno de los trucos de Erik me permitió jugar 3 bytes! Guardado 3 bytes gracias a Jonathan Allan.
Como funciona esto
En primer lugar, esto obtiene información de STDIN y la asigna a dos variables separadas i
y k
. Luego, mientras la variable i
es verdadera, la decrementamos y generamos las cadenas en consecuencia; Esta es una forma abreviada de bucle desde la entrada: 1 hasta 0.
Generando las cuerdas
Lo dividiré en más partes:
En primer lugar, se consigue el espacio inicial con " "*(k+~i)
. Dado que i
se asigna a través del rango (entrada, 0] , debemos restarlo de k
(nuestra entrada original almacenada de forma segura), disminuir y repetir un espacio tantas veces.
+"\\"
- Agrega el personaje "\"
a los espacios de arriba.
' / |\ '[i%2::2]
- Genera nuestras dos cadenas, a saber , "/ \ "
y " | "
, de la siguiente manera:
Si i
es impar, i% 2 es 1 , por lo tanto, [i%2::2]
devuelve cada 2 caracteres de nuestra cadena más grande, comenzando en el índice 1 (0 indexado).
Si i
es par, i% 2 es 1 , por lo tanto, el mecanismo anterior hace lo mismo excepto que comienza en el índice 0 .
+~-i*
- Repite la cadena generada arriba, ya sea "/ \ "
o " | "
, i-1 veces, y la agrega a las otras cadenas. El beneficio del operador bit a bit ( ~
- Complemento a nivel de bit , equivalente a i restado de -1 ) es que no requiere paréntesis en este contexto.
[:k-~i]
- Obtiene todos los caracteres de las cadenas concatenadas anteriormente hasta el índice k- ~ i = k - (-1 - i) = k + 1 + i .
+"_/"[i>0:]
- Esto solo se agrega "/"
si i ≥ 1 , de lo contrario, se agrega _/
.
Ejemplo completo / detalles de ejecución
Tomemos un ejemplo de cómo funcionan las cosas para una entrada de 4 :
i=k=input() # i and k are assigned to 4.
while i: # Starts the loop. The initial value of i is 4.
i-=1; # Decrement i. i is now 3.
" "*(k+~i) # A space repeated k - 1 - i = 4 - 1 - 3 = 0 times.
+"\\" # Plus the character "\". CS (Current string): "\".
' / |\ '[i%2::2] # The string ' / |\ '[3%2::2] = ' / |\ '[1::2] = "/ \ ".
i* # ^ repeated i = 3 times: "/ \ / \ / \ ".
+ # And concatenate. CS: "\/ \ / \ / \ "
[:k-~i] # Get the characters of ^ up to index k + 1 + i = 4 + 1 + 3 = 8.
# CS: "\/ \ / \".
+"_/"[i>0:] # Append "_/"[i>0:] = "_/"[3>0:] = "_/"[1:] = "/".
# CS: "\/ \ / \/".
print # Output the result "\/ \ / \/".
while i: # i is truthy (> 0), thus we loop again.
i-=1; # Decrement i. i becomes 2.
" "*(k+~i) # " " repeated 4 - 2 - 1 = 1 time.
+"\\" # Plus "\". CS: " \".
' / |\ '[i%2::2] # ' / |\ '[2%2::2] = ' / |\ '[::2] = " | ".
+i* # Repeat i = 2 times and append: " | ". CS: " \ | |".
[:k-~i] # CS up until k + 1 + i = 4 + 2 + 1 = 7. CS: " \ | ".
+"_/"[i>0:] # Append "/". CS: " \ | /".
print # Outputs the CS: " \ | /".
while i: # i is truthy (> 0), thus we loop again.
i-=1; # Decrement i. i is now 1.
" "*(k+~i) # " " repeated 4 - 1 - 1 = 2 times.
+"\\" # Plus "\". CS: " \".
' / |\ '[i%2::2] # ' / |\ '[2%2::2] = ' / |\ '[::2] = "/ \ ".
+i* # Repeat i = 1 time and append: "/ \ ". CS: " \/ \ ".
[:k-~i] # CS up until k + i + 1 = 4 + 2 = 6. CS: " \/ \".
+"_/"[i>0:] # Append "/". CS: " \/ \/".
print # Outputs the CS: " \/ \/".
while i: # i is truthy (> 0), thus we loop again.
i-=1; # Decrement i. i is now 0.
" "*(k+~i) # " " repeated 4 - 1 - 0 = 3 times.
+"\\" # Plus "\". CS: " \".
' / |\ '[i%2::2] # ' / |\ '[1%2::2] = ' / |\ '[1::2] = " | ".
+i* # Repeat i = 0 times and append: " \". CS: " \".
[:k-~i] # CS up until k + i + 1 = 4 + 0 + 1 = 5. CS: " \".
+"_/"[i>0:] # Append "_/" (because i > 0 is False since i == 0). CS: " \_/".
print # Outputs the CS: " \_/".
while i: # i == 0, hence the condition is falsy and the loop ends.
# Program terminates.