NOTE: You may not use any functions from external modules loaded by 'import.' In addition, you may not use dictionaries, list comprehensions, or other Python language features not yet taught in this class.
The point of these exercises is to practice very basic components of programming.
Write a function primeDivisorsOf(num) that takes a positive integer as input and returns a list of that number's prime divisors.
You may copy and use the numIsPrime function developed in class if you wish.