/XA-Data-Science

Checkpoint quizzes before the course to assess how students master the prerequisites.

Primary LanguageJupyter Notebook

Quiz

Checkpoint quizzes before the course to assess how students master the prerequisites.

Week 1

  1. oop_problem.py
  2. fizzbuzz.py

Write a program that prints the numbers from start (e.g. 1) to end (e.g. 100). But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five, print "FizzBuzz"

Week 2

  1. bird.py - Simple bird class and inheritance
  2. eulers_method.py: implement Eulers method to approximate a function.