You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.2 KiB

  1. """
  2. Analytical Skills - opgave faculteit iteratief
  3. (c) 2019 Hogeschool Utrecht
  4. Tijmen Muller (tijmen.muller@hu.nl)
  5. """
  6. def faculteit_iteratief(n):
  7. """ Berekent de faculteit van *n* op een iteratieve manier. """
  8. res = 1
  9. # Voeg de iteratie in: for ...
  10. return res
  11. """
  12. ========================================================================================================================
  13. Onderstaand staan de tests voor je code -- hieronder mag je niets wijzigen!
  14. Je kunt je code testen door deze file te runnen of met behulp van pytest.
  15. """
  16. import math
  17. def test_faculteit_iteratief():
  18. for x in range(6):
  19. assert faculteit_iteratief(x) == math.factorial(x), "Fout: faculteit_iteratief({}) geeft {} in plaats van {}".format(x, faculteit_iteratief(x), math.factorial(x))
  20. if __name__ == '__main__':
  21. try:
  22. print("\x1b[0;32m")
  23. test_faculteit_iteratief()
  24. print("Je functie faculteit_iteratief() doorstaat de tests!")
  25. print("\x1b[0;30m")
  26. x = int(input("Geef een getal: "))
  27. print(str(x) + "! = " + str(faculteit_iteratief(x)))
  28. except AssertionError as ae:
  29. print("\x1b[0;31m" + str(ae))