Meetings 26SP

Quick link to Live Python Tutor

Week 1

Wednesday

Thursday

Checklist before you leave:

You might want to start on the homework too! Hints:

  1. Start with something you know works… like your star.
  2. pen.penup()
  3. You don’t have to use forward() and right(); you can also use pen.goto()

Also finish Reading 1 and work on Forum 1 and Quiz 1 if you haven’t yet.

Friday

Upcoming:

Week 2

Monday

Wednesday

Thursday

Lab 2:

Friday

Week 3

Objectives this week:

Monday

Wednesday

Thursday

Friday

Week 4

Objectives

Monday

Section A will do some exercises based on this template, which uses the wordfreq package:

import wordfreq

words = []
for word in wordfreq.iter_wordlist('en'):
    words.append(word)
    if len(words) > 1000:
        break

longest_word = max(words, key=len)
print(longest_word)

Wednesday

Thursday

Friday

Week 5: Looping

Monday

Wednesday

Study strategies we discussed together:

Overall:

Thursday

Lab 5

optional labs:

Friday

Week 6: Functions

Monday

Wednesday

Thursday

If you finish early, you can:

Friday