Forum: Python Dec 11th, 2008 |
| Replies: 1 Views: 2,140 I need to write a Python program which parses webpages and returns a dictionary of unique words and their frequenies. What I came up with was #!/usr/bin/env python
from HTMLParser import HTMLParser,... |
Forum: Python Sep 2nd, 2008 |
| Replies: 2 Views: 486 Thanks, I actually realized my problem, I was running the program
python lab1.py getty.txt
instead of
python lab1.py < getty.txt
It works like that.... |
Forum: Python Sep 2nd, 2008 |
| Replies: 2 Views: 486 I know this is a homework question, but I have reached the end of my rope and really need guidance. I have had four years of Java programming then walked into my CS 3 class and was given an... |