Difference between revisions of "IB Computer Science 1"

From WLCS
Line 1: Line 1:
== Wednesday (2/10/16) ==
+
== Wednesday (2/17/16) ==
 +
'''Agenda:'''
 +
* Introduction to File Reading & Writing (Input & Output)
 +
*# Assume you have a single string containing the entire U.S. Constitution.  Calculate and print out the frequency of the word "the"
 +
*#* Download the following file: [[Media:Constitution.txt]]
 +
*#* Hint: There is a useful string function converts a string to a list of words.
 +
*# Assume you have a single data file with 1000 random numbers from 0 to 100.  Print out the frequency of each of the numbers.
 +
*# Assume you have a list of strings of peoples' full names in random order.  Print out an alphabetized list of only the last names.
 +
 
 +
* Example code to help read in a file:
 +
<syntaxhighlight lang="Python">
 +
# open a text file
 +
file = open("Constitution.txt", "r")
 +
 
 +
# read all lines in the file and save in the constitution string variable
 +
constitutionStr = file.read()
 +
 
 +
 
 +
# close the file
 +
file.close()
 +
 
 +
print(constitutionStr)
 +
</syntaxhighlight>
 +
 
 +
== Wednesday - Friday (2/10/16 - 2/12/16) ==
 
'''Agenda:'''
 
'''Agenda:'''
 
* Complete [[Advanced Python List Exercises]]
 
* Complete [[Advanced Python List Exercises]]

Revision as of 09:25, 17 February 2016

Wednesday (2/17/16)

Agenda:

  • Introduction to File Reading & Writing (Input & Output)
    1. Assume you have a single string containing the entire U.S. Constitution. Calculate and print out the frequency of the word "the"
      • Download the following file: Media:Constitution.txt
      • Hint: There is a useful string function converts a string to a list of words.
    2. Assume you have a single data file with 1000 random numbers from 0 to 100. Print out the frequency of each of the numbers.
    3. Assume you have a list of strings of peoples' full names in random order. Print out an alphabetized list of only the last names.
  • Example code to help read in a file:
# open a text file
file = open("Constitution.txt", "r")

# read all lines in the file and save in the constitution string variable
constitutionStr = file.read()


# close the file
file.close()

print(constitutionStr)

Wednesday - Friday (2/10/16 - 2/12/16)

Agenda:

Monday (2/8/16)

Warmup:

  1. Given numList = [9, 6, 3, 1, 3, 6, 8]
  2. Use a for loop to print out half of each element
  1. Given strList = ["Arlington", "Fairfax", "Falls Church", "Alexandria"]
  2. Use a for loop to print out the first letter of each element

Agenda:

Thursday (2/4/16)

Warmup:

  1. Given the following list: warmupList = [1, 3, 5, 2, 4, 6]
  2. Swap the first and last elements in warmupList (you should use a temp variable)
  3. Be sure to make it so that your code works for ANY list (i.e. any numbers in the list)

Agenda:

Tuesday (2/2/16)

  • StudentVUE has been updated
    • You have until tomorrow to demo missing assignments
    • If you are turning in a missing assignment, you MUST show it to Mr. Bui in person
  • Group 4 Projects
    • DUE TODAY
    • Submit video via Google Classroom
    • Submit hard-copy cover sheets and peer assessments to your teachers
  • IB candidate session numbers
    • http://www.washlee.net/ib
    • Sophomores and Juniors who are *not* taking exams this year do not have numbers (leave that field on the cover sheet blank)
  • Complete Advanced Python List Exercises

Thursday - Friday (1/21/16 - 1/29/16)

  • Snowzilla!

Wednesday (1/20/16)

Agenda:

Wednesday - Friday (1/13/16 - 1/15/16)

Agenda:

Monday (1/11/16)

Friday (1/8/16)

  • Group 4 Project Day

Tuesday - Thursday (1/5/16 - 1/7/16)

Archives