Coding Bat Related Tutorial Exercises (Due 05 Apr 2017)

These problems are taken from the Java Section of Coding Bat but modified for Python. You will have to download the program recursion1.py.txt and fill in the header. Remove the .txt extension. That extension is there because some browsers may not allow you to download executable files.

For each function that you wish to write, remove the comment symbol (#). Write your code and test it on the command line. Supposing the function you wrote was factorial. Then you will execute the following command:

python3 recursion1.py factorial
You do that for every function that you write. Do not modify the functions that have not been assigned.

There are several problems that we worked out in class and you may use their solutions. I would like you to do the following problems:

  1. factorial
  2. bunnyEars
  3. fibonacci
  4. bunnyEars2
  5. triangle
  6. sumDigits
  7. count7
  8. count8
  9. powerN
  10. countX
  11. countHi

Use the Canvas program to submit your recursion1.py file. We should receive your work by 11 PM on Wednesday, 05 Apr 2017. There will be substantial penalties if you do not adhere to the guidelines.

You may work with a partner on the tutorial exercises. Both of you must read the paper on Pair Programming . Both of you must submit the tutorial exercises individually.