Re: [Tutor] Python Certifications

2015-08-08 Thread Laura Creighton
This page is relevant: https://wiki.python.org/moin/PythonTraining Laura ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Dictionary Issue

2015-08-08 Thread Alan Gauld
On 08/08/15 00:05, Ltc Hotspot wrote: Hi Alan, On line 15, I replaced: 'count[address] = count.get(address, 0) + 1' with 'line = Counter(address)'. line = Counter(address) will create a new Counter object with the address in it with a count value of 1. Every line in the file will create a n

Re: [Tutor] Python Certifications

2015-08-08 Thread street . sweeper
On Mon, Aug 3, 2015, at 04:55 PM, acolta wrote: > Hi, > > I am new in python, so just curios if there are any good and appreciated > python certification programs/courses ? I'm interested in this too, but some googling only finds a 4-part O'Reilly program that's no longer available. They're movi

Re: [Tutor] Help with Pygame

2015-08-08 Thread Mark Lawrence
On 07/08/2015 23:50, franklinsco...@gmail.com wrote: I downloaded pygame and tried testing it and it didn't work. I tried the latest version of pygame and it didn't work again. I tried moving the file to the place I think the import code gets programs from so it could open pygame. It didn't wo

[Tutor] [off-topic] vi/vim editor settings (was: Pep 8, about indentation)

2015-08-08 Thread Cameron Simpson
On 07Aug2015 21:50, Alex Kleider wrote: On 2015-08-07 20:56, Cameron Simpson wrote: autoindent: start the next line's text on the same indent as this one expandtab: write spaces instead of a TAB character shiftwidth: how far the < and > shift-text operations move tabstop: the multiple used to t