Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!us.feeder.erje.net!news2.arglkargh.de!news.mixmin.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed1.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.006 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'example:': 0.03; 'subject:file': 0.07; 'exec': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'python': 0.11; 'doc:': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'subject:run': 0.16; 'wrote:': 0.18; 'header:User-Agent:1': 0.23; 'specify': 0.24; 'header:X-Complaints-To:1': 0.27; 'header:In- Reply-To:1': 0.27; 'am,': 0.29; 'kevin': 0.30; 'url:python': 0.33; 'except': 0.35; 'more,': 0.35; 'but': 0.35; 'version': 0.36; 'subject:?': 0.36; 'hi,': 0.36; 'url:org': 0.36; 'skip:o 20': 0.38; 'to:addr:python-list': 0.38; 'does': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'read': 0.60; 'received:173': 0.61; 'absolutely.': 0.84; 'received:fios.verizon.net': 0.84; 'url:reference': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Terry Jan Reedy Subject: Re: how to run another file inside current file? Date: Sat, 18 May 2013 12:39:16 -0400 References: <67c4dd92-7e6a-4955-850b-0c21c2708e05@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: pool-173-75-251-66.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130509 Thunderbird/17.0.6 In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 27 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1368895205 news.xs4all.nl 15996 [2001:888:2000:d::a6]:39032 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:45516 On 5/18/2013 7:15 AM, Kevin Xi wrote: > Hi, > It's better to specify version of python you work with. Absolutely. I know nothing > about python 3 but in python 2 you can do this with `exec`. Example: > > > f = file('otherFile.py') > > exec f Py 2 has execfile that does the above. Py 3 do as above except that exec is a function. with open('otherfile.py') as f: exex(f) > For more, read the doc: > http://docs.python.org/2.7/reference/simple_stmts.html#the-exec-statement > HTH