-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Melhora identação exercícios e seus testes
Fix #13
- Loading branch information
1 parent
4b29447
commit 115badb
Showing
29 changed files
with
354 additions
and
355 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
def my_github_nickname_is(): | ||
# TODO: Retorne seu usuário github. | ||
pass | ||
# TODO: Retorne seu usuário github. | ||
pass |
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
30 changes: 15 additions & 15 deletions
30
web_dev_challenges/01_essencial/03_operadores/operators.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
def add(first_number, second_number): | ||
# TODO: retorne a soma dos parâmetros first_number e second_number | ||
pass | ||
# TODO: retorne a soma dos parâmetros first_number e second_number | ||
pass | ||
|
||
def sub(first_number, second_number): | ||
# TODO: retorne a subtração dos parâmetros first_number e second_number | ||
pass | ||
# TODO: retorne a subtração dos parâmetros first_number e second_number | ||
pass | ||
|
||
def mult(first_number, second_number): | ||
# TODO: retorne a multiplicação dos parâmetros first_number e second_number | ||
pass | ||
# TODO: retorne a multiplicação dos parâmetros first_number e second_number | ||
pass | ||
|
||
def div(first_number, second_number): | ||
# TODO: retorne a divisão dos parâmetros first_number e second_number | ||
pass | ||
# TODO: retorne a divisão dos parâmetros first_number e second_number | ||
pass | ||
|
||
def expo(first_number, second_number): | ||
# TODO: retorne a exponenciação dos parâmetros first_number e second_number | ||
pass | ||
# TODO: retorne a exponenciação dos parâmetros first_number e second_number | ||
pass | ||
|
||
def remai(first_number, second_number): | ||
# TODO: retorne o resto da divisão dos parâmetros first_number e second_number | ||
pass | ||
# TODO: retorne o resto da divisão dos parâmetros first_number e second_number | ||
pass | ||
|
||
def quoti_remai(first_number, second_number): | ||
# TODO: retorne o quociente e o resto da divisão, nesta exata ordem, dos parâmetros first_number e second_number | ||
# Hint: Utilize a vírgula para separar os dois valores retornados na função | ||
pass | ||
# TODO: retorne o quociente e o resto da divisão, nesta exata ordem, dos parâmetros first_number e second_number | ||
# Hint: Utilize a vírgula para separar os dois valores retornados na função | ||
pass |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
def circle_area(radius): | ||
# TODO: Retorne a área de um círculo dado a medida de seu raio | ||
# Auxílio: Utilize 3.14 como valor do Pi | ||
pass | ||
# TODO: Retorne a área de um círculo dado a medida de seu raio | ||
# Auxílio: Utilize 3.14 como valor do Pi | ||
pass | ||
|
||
|
||
def square_area(side): | ||
# TODO: Retorne a área de um quadrado dado a medida de seu lado | ||
pass | ||
# TODO: Retorne a área de um quadrado dado a medida de seu lado | ||
pass | ||
|
||
def rectangle_area(side, base): | ||
# TODO: Retorne a área de um retângulo dado a medida de seu lado e de sua base | ||
pass | ||
# TODO: Retorne a área de um retângulo dado a medida de seu lado e de sua base | ||
pass |
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
20 changes: 10 additions & 10 deletions
20
web_dev_challenges/01_essencial/05_strings/learn_strings.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
def has_letter(letter, input_word): | ||
# TODO: Retorne True ou False para a existência da letra (letter) no texto informado (string) | ||
pass | ||
# TODO: Retorne True ou False para a existência da letra (letter) no texto informado (string) | ||
pass | ||
|
||
def uper_case(input_word): | ||
# TODO: Retorne o valor to texto todo em letras maiúsculas | ||
pass | ||
# TODO: Retorne o valor to texto todo em letras maiúsculas | ||
pass | ||
|
||
|
||
def lower_case(input_word): | ||
# TODO: Retorne o valor to texto todo em letras minúsculas | ||
pass | ||
# TODO: Retorne o valor to texto todo em letras minúsculas | ||
pass | ||
|
||
def capitalize(input_word): | ||
# TODO: Retorne o valor to texto todo com a primeira letra maiúscula | ||
pass | ||
# TODO: Retorne o valor to texto todo com a primeira letra maiúscula | ||
pass | ||
|
||
def reverse(input_word): | ||
# TODO: Retorne o valor inverso de um texto | ||
pass | ||
# TODO: Retorne o valor inverso de um texto | ||
pass |
Oops, something went wrong.