Re: [Tutor] Python 3.5 console logging

2015-11-30 Thread Steven D'Aprano
Hi Tyler, and welcome, On Mon, Nov 30, 2015 at 04:50:35PM -0500, Tyler Smithers wrote: > I am doing a project for my school and i am trying to find out how to make > a event log. But every where i look all it has is just making a text > document and it having in their what they put in their scrip

[Tutor] Python 3.5 console logging

2015-11-30 Thread Tyler Smithers
I am doing a project for my school and i am trying to find out how to make a event log. But every where i look all it has is just making a text document and it having in their what they put in their script. But i cant find out how to code python into recording everything that happens when i run the

Re: [Tutor] Countdown Clock Programming Question

2015-11-30 Thread Evan Sommer
Hello again Alan! Do you think you could write a revised code with the modifications that you suggested? I tried changing the code with your recommendations and I keep getting syntax errors. If you could do that, I would greatly appreciate it!! Thank you for all your help! Evan Sommer On Tue,

Re: [Tutor] how to invert tuples, one problem more

2015-11-30 Thread Emile van Sebille
On 11/27/2015 12:50 PM, marcus lütolf wrote: dear pythonistas, thanks for your very valuable help. I am struggling with a simple piece of code: x = Marcus print '{0} {1} x'.format('a', '=') You're almost there - print '{0} {1} {2}'.format('a', '=', x) Emile which gives me a = x instea