Skip to content

Latest commit

 

History

History

0x07-python-test_driven_development

Python - Test-driven development

Technologies

  • Files written in vi, vim, and emacs editors.
  • Files wriiten according to the betty coding style. Checked using betty-style.pl and betty-doc.pl.
  • Files tested on Ubuntu 20.04 LTS using gcc.
  • Python3.4 files

Directories

  • tests - contains the test files in .txt format.

Files

File Question
0-add_integer.py Write a function that adds 2 integers.
2-matrix_divided.py Write a function that divides all elements of a matrix.
3-say_my_name.py Write a function that prints My name is <first name> <last name>
4-print_square.py Write a function that prints a square with the character #.
5-text_indentation.py Write a function that prints a text with 2 new lines after each of these characters: ., ? and :
100-matrix_mul.py Write a function that multiplies 2 matrices
101-lazy_matrix_mul.py Write a function that multiplies 2 matrices by using the module NumPy
102-python.c Create a function that prints Python strings.