Skip to content

Latest commit

 

History

History

python-if_else_loops_functions

Python - if/else, loops, functions

Description

  • 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
  • 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
  • 7. islower
  • 8. To uppercase
  • 9. There are only 3 colors, 10 digits, and 7 notes; it's what we do with them that's important
  • 10. a + b
    • 10-add.py - Adds two integers and returns the result.
  • 11. a ^ b
    • 11-pow.py - Computes a to the power of b and return the value.
  • 12. Fizz Buzz
  • 13. Smile in the mirror
    • 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

Author