Please have one group member grab a Exercise Solution Set sheet on the way into class. I can distribute them out to any groups that don’t have them.
These announcements and notes will be linked from the schedule table (as “notes” in the Slides column).
Faculty candidate talk:
Note: you don’t yet know some of the syntax I’m using, but you will soon.
print("Hello world!")
print("Hello", "world!")
print("Hello", " ", "world", "!", sep="")
print("Hello world", sep=" ", end="!\n")
print("Hello world", end="!\n", sep=" ")
print("H", "e", "l", "l", "o", " ", "w", "o", "r", "l", "d", "!", sep="")
print("Hell", " w", "rld!", sep="o")
import sys
"Hello world!\n")
sys.stdout.write(
# and I could go on...
q-and-a
channel, or go to the CS Tutors (see the Syllabus “Resources for Getting
Help and Support”).