× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



I was sure there was a way to slice the array without .pop() but I couldn't remember it. Thank you



-----Original Message-----
From: John Yeung [mailto:gallium.arsenide@xxxxxxxxx]
Sent: Tuesday, January 15, 2019 10:25 AM
To: Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxxxxxxxx>
Subject: Re: Need help to convert a name in upper case, to mixed case

Small note for those learning Python: This is fine, and works, and is easy to follow, but it's not idiomatic:

On Tue, Jan 15, 2019 at 10:11 AM Justin Taylor <JUSTIN@xxxxxxxxxxxxx> wrote:

import sys

parms = sys.argv
parms.pop(0)

return_value = ""
try:
for parm in parms:
return_value += parm.capitalize() + " "
except:
return_value = "Error"

print(return_value.rstrip())

Folks who have been using Python for a while would more likely write it like this:

import sys

print(' '.join(sys.argv[1:]).title())

John Y.


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.