Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Challenge: Pyramid | Recursion and Lambda Functions
Python Functions Tutorial
course content

Conteúdo do Curso

Python Functions Tutorial

Python Functions Tutorial

1. What is Function in Python?
2. Positional and Optional Arguments
3. Arbitrary Arguments
4. Function Return Value Specification
5. Recursion and Lambda Functions

bookChallenge: Pyramid

Tarefa

Edit a recursive function draw_pyramid that takes an integer height and prints a pyramid of asterisks with a height of height to the console.

Expected Output:

Conditions:

You need to fill in the blanks in the code (___) so that when the current height (current_height) exceeds the specified height of the pyramid (height), the program terminates. Otherwise, the program should continue drawing the next row of the pyramid with a recursive call to the function.

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 5. Capítulo 2
toggle bottom row

bookChallenge: Pyramid

Tarefa

Edit a recursive function draw_pyramid that takes an integer height and prints a pyramid of asterisks with a height of height to the console.

Expected Output:

Conditions:

You need to fill in the blanks in the code (___) so that when the current height (current_height) exceeds the specified height of the pyramid (height), the program terminates. Otherwise, the program should continue drawing the next row of the pyramid with a recursive call to the function.

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 5. Capítulo 2
toggle bottom row

bookChallenge: Pyramid

Tarefa

Edit a recursive function draw_pyramid that takes an integer height and prints a pyramid of asterisks with a height of height to the console.

Expected Output:

Conditions:

You need to fill in the blanks in the code (___) so that when the current height (current_height) exceeds the specified height of the pyramid (height), the program terminates. Otherwise, the program should continue drawing the next row of the pyramid with a recursive call to the function.

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Tarefa

Edit a recursive function draw_pyramid that takes an integer height and prints a pyramid of asterisks with a height of height to the console.

Expected Output:

Conditions:

You need to fill in the blanks in the code (___) so that when the current height (current_height) exceeds the specified height of the pyramid (height), the program terminates. Otherwise, the program should continue drawing the next row of the pyramid with a recursive call to the function.

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Seção 5. Capítulo 2
Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
some-alt