Change Contents of the Bubble
Welcome to CS1315. Click on the python to add comments.

Looking for the book? They have it at the Engineer's Bookstore at 748 Marietta St NW. Here is there website: http://www.engrbookstore.com/ - Monica

Hotspots: Slides and CodeTA CornerComments?AnnouncementsFAQStatic Webspace
View this PageEdit this PageUploads to this PageHistory of this PageHomeRecent ChangesSearchHelp Guide

Test 3 Review Questions- Fall 2007

Post questions here.

Note: If they are about what specifically will be on the test, we will not answer. Also, the best way to learn more about this material is to read your book and check out the Slides and code page, but meeting with a TA would also be helpful. There will probably be questions that are too hard for us to answer on this page, if so, I will note that and ask the student to e-mail me. Thanks! Brittany Duncan

wait...when is the test?
the test is monday. where can we find access to the old reviews? and will they be comprable to the reviews given for the first two tests?
go to extra help on the home page and you can find old test reviews there
You can also scroll to the bottom of the home page and click on "here". Then click on "Reviews" on the next page. They should be similar to the type that we have released for the first two exams, but will have no relation to the exam to be given on Monday, they are just extra practice. Also, the test is indeed on Monday. Thanks! Brittany Duncan
on the old test reviews there is a long list of strings to identify... will we need to be able to recognize that many or just some basic ones?
Do you mean long list of string methods/functions? If so, you will just need to know the ones that have been mentioned in class or in the posted examples. If I give you a short programming assignment in the test that requires the use of a method that you may not be very familiar with, I will remind you about the method as part of the question. Colin Potts
I still can find a main difference between strings and lists. Can someone clarify? Thanks.
CANNOT FIND, sorry
The best way to think about it is that a string, for example the word "mississippi", is made up of a bunch of characters. A list can be made of of a bunch of strings, or a bunch of numbers or a bunch of pictures or a bunch of sounds. Strings are letters only whereas a list can be a list of anything essentially, the components of the list must be the same (ie you can have a list of strings or and list of pictures, but not a list of pictures and numbers). Hope this helps, let me know if you need anything else. Toni Walden

def makeHomePage(name, interest):
file=open("homepage.html","wt")
file.write("""
"""+name+"""'s Home Page

Weulcome to """+name+"""'s Home Page

Hi! I'm """+name+""". This is my home page! I'm inetrested in """+interest+"""

""")
file.close()

I copy this from the book, but it does not generate a homepage. I created a empty homepage.html file before in the same folder than the program, but nothing happened. My program is not working. The problem is that the whole repices start like this one.. I can write the pages content but i cant generate them through a recipe. I´m sure there is a simply step to do that.
Do not forget to use the code tags. Your code is unreadable. Also, do not just copy code from the book, if you don't understand a concept you should look at the book, slides, or see a TA. Copying from the book does not help you understand. Thanks! Brittany Duncan
So, does normalizing make the sound as loud as possible?
As loud as possible without clipping. Thanks! Brittany Duncan




Link to this Page