You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tests/ - Main functions provided by Holberton School to test the files.
Tasks
0. Positive anything is better than negative nothing
0-positive_or_negative.py - Assign a random signed number to the variable number 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 variable number 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 except q and e.
4. Hexadecimal printing
4-print_hexa.py - Prints all number from 0 to 98 in decimal and in hexadecimal.
5. 00...99
5-print_comb2.py - Prints numbers from 0 to 99 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.
100-print_tebahpla.py - Prints the ASCII alphabet, in reverse order, alternating lowercase and uppercase (z in lowercase and Y 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 position n.