โ“ Formal vs. Natural Languages

โ“ Formal vs. Natural Languages#

# 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("11_formal_and_natural_language_q", "week_1", "readings", assignment_points = 17.0, assignment_tag = 'week1-readings')

# Run this block of code by pressing Shift + Enter to display the question
from questions._11_formal_and_natural_language_q import Question1
Question1().show()
# Run this block of code by pressing Shift + Enter to display the question
from questions._11_formal_and_natural_language_q import Question2
Question2().show()
# Run this block of code by pressing Shift + Enter to display the question
from questions._11_formal_and_natural_language_q import Question3
Question3().show()
# Run this block of code by pressing Shift + Enter to display the question
from questions._11_formal_and_natural_language_q import Question4
Question4().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", "11_formal_and_natural_language_q")