โ“ What is a Program

โ“ What is a Program#

# You must make sure to run all cells in sequence using shift + enter or you might encounter errors
from pykubegrader.initialize import initialize_assignment

responses = initialize_assignment("9_what_is_a_program_q", "week_1", "readings", assignment_points = 9.0, assignment_tag = 'week1-readings')

# Run this block of code by pressing Shift + Enter to display the question
from questions._9_what_is_a_program_q import Question1
Question1().show()
# Run this block of code by pressing Shift + Enter to display the question
from questions._9_what_is_a_program_q import Question2
Question2().show()

Submitting Assignment#

Please run the following block of code using shift + enter to submit your assignment, you should see your score.

from pykubegrader.submit.submit_assignment import submit_assignment

submit_assignment("week1-readings", "9_what_is_a_program_q")