# # lab1task2.py # # name: CS 111 course staff # email: cs111-staff@cs.bu.edu # course = 111 print('congratulations on taking CS', course) course = course + 1 print('maybe you will take CS', course, 'next semester') print() days = 40 print('the first midterm is in fewer than', days, 'days') weeks = days // 7 print('that is approximately', weeks, 'weeks') print() # To debug the following line, we replaced the " with a '. # We could also have used two "s instead of two 's. print('Go Terriers!') # To debug the following line, we added a comma between # the two expressions (the string and the division expression). # We also added a closing right paren at the end. print('pi is approximately', (22 / 7))