tests/
- Main functions provided by Holberton School to test the files.
- 0. Positive anything is better than negative nothing
0-positive_or_negative.py
- Assign a random signed number to the variablenumber
each time it is executed. Complete the source code in order to print whether the number stored in the variable number is positive or negative.
- 1. The last digit
1-last_digit.py
- Assign a random signed number to the variablenumber
each time it is executed. Complete the source code in order to print the last digit of the number stored in the variable number.
- 2. I sometimes suffer from insomnia. And when I can't fall asleep, I play what I call the alphabet game
2-print_alphabet.py
- Prints the ASCII alphabet, in lowercase, not followed by a new line.
- 3. When I was having that alphabet soup, I never thought that it would pay off
3-print_alphabt.py
- Prints the ASCII alphabet, in lowercase, not followed by a new line, all the letters exceptq
ande
.
- 4. Hexadecimal printing
4-print_hexa.py
- Prints all number from0
to98
in decimal and in hexadecimal.
- 5. 00...99
5-print_comb2.py
- Prints numbers from0
to99
with two digits, separated by,
and followed by a space.
- 6. Inventing is a combination of brains and materials. The more brains you use, the less material you need
6-print_comb3.py
- Prints all possibles different combinations of two digits.
- 7. islower
7-islower.py
- Checks for lowercase character.
- 8. To uppercase
8-uppercase.py
- Prints a string in uppercase.
- 9. There are only 3 colors, 10 digits, and 7 notes; it's what we do with them that's important
9-print_last_digit.py
- Prints the last digit of a number.
- 10. a + b
10-add.py
- Adds two integers and returns the result.
- 11. a ^ b
11-pow.py
- Computesa
to the power ofb
and return the value.
- 12. Fizz Buzz
12-fizzbuzz.py
- Fizz buzz exercise.
- 13. Smile in the mirror
100-print_tebahpla.py
- Prints the ASCII alphabet, in reverse order, alternating lowercase and uppercase (z
in lowercase andY
in uppercase), not followed by a new line.
- 14. Remove at position
101-remove_char_at.py
- Creates a copy of the string, removing the character at the positionn
.
- Felipe Villamizar - GitHub