# ACT2-2 functions.

# Lines that start with '#' are COMMENTS.
# They are not interpreted by Python.

# Step 1: Make a variable called fileName, and assign it the name of the file


# Step 2: Open the file whose name is saved in fileName


# Step 3: Read in the contents of the file into a string called fileString


# Step 4: Close the file


# Step 5: Split the file so that we can count the number of words
# Hint: You will need to use the split command


# Step 6: Split the file so that we can count the number of sentence
# Hint: You will need to use split with a delimiter