Re: [Tutor] Unit testing individual modules

2013-11-19 Thread Alan Gauld
On 19/11/13 16:06, Patti Scott wrote: Python 2.4 self-study with Python Programming: An Introduction to Computer Science by Zelle I am trying to import a program that has a conditional execution statement at the end so I can troubleshoot individual modules in the main() program. I'm not quite s

[Tutor] Unit testing individual modules

2013-11-19 Thread Patti Scott
Python 2.4 self-study with Python Programming: An Introduction to Computer Science by Zelle   I am trying to import a program that has a conditional execution statement at the end so I can troubleshoot individual modules in the main() program.   Below is the textbook example program.  When I try t

Re: [Tutor] Tutor Digest, Vol 117, Issue 33[ Re: Ideas ? ]

2013-11-19 Thread Mark Lawrence
On 19/11/2013 02:02, Satheesan Varier wrote: If you want help would you please start a new thread and not send a reply to the entire tutor digest, albeit a small one in this instance. Or are you replying to someone else, it's very difficult to see from the mish mash that's arrived at my email

Re: [Tutor] Tutor Digest, Vol 117, Issue 33[ Re: Ideas ? ]

2013-11-19 Thread Satheesan Varier
Need a little help with finding a process for this: when a string of text is input, for example: abc def. I want to have each letter shift to the right one place in the alphabet. Thus.. abc def would be output as bcd efg. Any ideas on how to do this? --