Skip to content

Friday 8/25

Announcements

  • TA hours start Tuesday 8/29
  • I have office hours today from 3:00-4:00
  • Today:
    • Buy the zyBook and finish CH 1.1
  • This weekend:
    • Finish all of the CH1 reading
    • Start HW1

Class Materials

  • Act01-IntroPython.pdf
  • hello.py
    # display a welcome message
    print("Welcome to Python 3!")
    
    # give the user a compliment
    name = input("What's your name? ")
    print(name, "is a great name!")