Path: csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'example:': 0.03; 'parser': 0.07; 'stops': 0.07; 'python': 0.09; '[1,': 0.09; 'arguments,': 0.09; 'command-line': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:into': 0.09; 'do,': 0.15; 'options.': 0.15; 'argparse': 0.16; 'message-id:@dough.gmane.org': 0.16; 'received:80.91.229.3': 0.16; 'received:dip.t-dialin.net': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-dialin.net': 0.16; 'roy': 0.16; 'subject:Converting': 0.16; 'wrote:': 0.17; 'tend': 0.17; '(in': 0.18; 'trying': 0.21; 'import': 0.21; 'thanks.': 0.21; 'effort.': 0.22; 'parse': 0.22; 'seems': 0.23; 'header:User-Agent:1': 0.26; '[1]': 0.27; 'question': 0.27; 'module.': 0.27; 'header:X-Complaints-To:1': 0.28; 'subject:list': 0.28; 'cat': 0.29; 'learn,': 0.29; 'convert': 0.29; 'probably': 0.29; "i'm": 0.29; 'maybe': 0.29; 'that.': 0.30; 'print': 0.32; 'getting': 0.33; 'like:': 0.33; 'to:addr:python-list': 0.33; 'list': 0.35; 'subject:?': 0.35; "won't": 0.35; 'something': 0.35; 'received:org': 0.36; 'really': 0.36; 'but': 0.36; "didn't": 0.36; "i'll": 0.36; 'skip:p 20': 0.36; 'does': 0.37; 'two': 0.37; 'subject:: ': 0.38; 'mark': 0.38; 'to:addr:python.org': 0.39; 'little': 0.39; 'header:Received:5': 0.40; 'your': 0.60; '(that': 0.62; 'worth': 0.63; 'more': 0.63; 'jul': 0.65; 'smith': 0.71; 'ask,': 0.84; 'type=int,': 0.84; 'working,': 0.84; 'try.': 0.91; 'technique': 0.93 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Peter Otten <__peter__@web.de> Subject: Re: Converting a list of strings into a list of integers? Date: Sun, 22 Jul 2012 18:30:48 +0200 Organization: None References: <3rCdnUCiWpP1gZHNnZ2dnUVZ7vQAAAAA@giganews.com> <3rCdnUOiWpMhvpHNnZ2dnUVZ7vSdnZ2d@giganews.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: p5084a910.dip.t-dialin.net User-Agent: KNode/4.7.3 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 42 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1342974656 news.xs4all.nl 6849 [2001:888:2000:d::a6]:59639 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:25819 Tony the Tiger wrote: > On Sun, 22 Jul 2012 11:39:30 -0400, Roy Smith wrote: > >> To answer the question you asked, to convert a list of strings to a list >> of ints, you want to do something like: >> >> MODUS_LIST = [int(i) for i in options.modus_list] > > Thanks. I'll look into that. I now remember reading about the technique > (in Mark Lutz' "Learning Python"), but it seems I'm getting old as I tend > to forget about it from time to time. ;) > >> But, to answer the question you didn't ask, if you're trying to parse >> command-line arguments, you really want to use the argparse module. It's >> a little complicated to learn, but it's well worth the effort. > > Your suggestions about the argparse. Well, it seems it does pretty much > the same as OptionParser which I use now. Perhaps it has more features > (that I probably won't need in my 30 line script), I only need to keep > track of maybe one or two options. Maybe one of these days, when I have > little else to do, or when the OptionParser stops working, I'll give it a > try. Thanks. :) Here's an argparse example: $ cat argparse_list.py import argparse parser = argparse.ArgumentParser() parser.add_argument("-m", "--modus", type=int, nargs="*") print parser.parse_args().modus $ python argparse_list.py None $ python argparse_list.py -m [] $ python argparse_list.py -m 1 [1] $ python argparse_list.py -m 1 2 3 [1, 2, 3]