Momentum logo
Team 12 Classroom

Python Sequences and Files

Posted on Apr 25th, 2022

We can use the generic term sequence for any object that provides an ordered structure for a number of items, such as a string (a group of characters), a list, or a dictionary (keys and values).

Files are important as inputs for our programs. Today we’ll learn about working with text files.

📅 Today’s Topics

  • More strings
  • Working with files
  • List comprehensions

🐍 Code Break

🎯 Project

We will work on this project in stages both inside and outside of class today. It is due on Tuesday morning.

Word Frequency

You will find this helpful in understanding the starter code.

🔖 Resources

RealPython

Python Docs

🦉 Code & Notes

Back to home