Re: Dictionaries

2014-02-08 Thread worthingtonclinton
greatly appreciated guys. thanks! -- https://mail.python.org/mailman/listinfo/python-list

Dictionaries

2014-02-08 Thread worthingtonclinton
why in a for loop can i access values for a dict that i did not address in the for loop. example: a = {blah:blah} b = {blah:blah} for x in a: print a[x] #here's what i don't understand print b[x] # it would print the value for dict b even though it wasn't ca

Re: Directory Web Site

2013-09-22 Thread worthingtonclinton
On Sunday, September 22, 2013 9:59:14 PM UTC-4, Dave Angel wrote: > On 22/9/2013 21:14, worthingtonclin...@gmail.com wrote: > > > > > Was hoping to get some tips or advice on scripting a program that would > > sort through my many links on my directory website and print out to me the > > ones

Re: Directory Web Site

2013-09-22 Thread worthingtonclinton
On Sunday, September 22, 2013 9:36:25 PM UTC-4, Joel Goldstick wrote: > On Sun, Sep 22, 2013 at 9:14 PM, wrote: > > Was hoping to get some tips or advice on scripting a program that would sort > through my many links on my directory website and print out to me the ones > that are broken or no

Directory Web Site

2013-09-22 Thread worthingtonclinton
Was hoping to get some tips or advice on scripting a program that would sort through my many links on my directory website and print out to me the ones that are broken or no longer functioning so that I could fix or remove them from the site. Any help, ideas, advice will be greatly appreciated.