Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6145111
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:45:01+00:00 2026-05-23T18:45:01+00:00

Python has a nice execfile function inside the interpreter where you can run a

  • 0

Python has a nice execfile function inside the interpreter where you can run a program, keep all the variables in scope, and then inspect them at your leisure. However, as far as I know you can’t run execfile on a program that takes arguments from the command line; if you try to include the arguments, Python throws an IOError and complains that the file (with spaces and arguments) can’t be found.

Is there any way to run a Python script that takes command line arguments, and keep all of the variables in scope after the program executes? Like an execfile that takes flags?

Thanks,
Kevin

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T18:45:02+00:00Added an answer on May 23, 2026 at 6:45 pm

    You could modify sys.argv directly. The file:

    # foo.py
    import sys
    
    print sys.argv
    

    The other file:

    import sys
    import shlex   # thanks Matt
    
    old_argv = sys.argv
    sys.argv = shlex.split('foo.py is a happy camper')
    
    execfile('foo.py')
    

    Output:

    $ python foo.py is a happy camper
    ['foo.py', 'is', 'a', 'happy', 'camper']
    $ python bar.py 
    ['foo.py', 'is', 'a', 'happy', 'camper']
    

    But I must say, quoting Ignacio Vazquez-Abrams:

    This sounds all sorts of messed up.

    I’m assuming you have your reasons though.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Python has a flag -O that you can execute the interpreter with. The option
Python language has a well known feature named interactive mode where the interpreter can
Python has a nice zip() function. Is there a PHP equivalent?
(git version 1.6.5.7) When I run git diff the output has a nice scope
Python has all sort of libraries to interface with databases, which provide a nice
I know that python has a len() function that is used to determine the
How can you tell whether python has been started with the -i flag? According
MATLAB has a nice silhouette function to help evaluate the number of clusters for
Python has this wonderful way of handling string substitutions using dictionaries: >>> 'The %(site)s
Python has a singleton called NotImplemented . Why would someone want to ever return

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.