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
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
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
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?
--