Table of Contents
回复内容:
Home Backend Development Python Tutorial 如何在一个py程序里执行另一个py程序?

如何在一个py程序里执行另一个py程序?

Jun 06, 2016 pm 04:23 PM
explorer import py start

在搜索引擎上搜过,未果
问题的详细描述:假设在桌面有一个“A.py”,当A.py被运行的时候会自动打开“B.py”(不在桌面,而是在其他路径,并且这个路径已知)。

实现效果类似于如下代码:

<span class="kn">import</span> <span class="nn">os</span>
<span class="n">start_dire</span> <span class="o">=</span> <span class="s">r"E:\*.txt"</span>
<span class="n">os</span><span class="o">.</span><span class="n">system</span><span class="p">(</span><span class="s">"explorer.exe </span><span class="si">%s</span><span class="s">"</span> <span class="o">%</span><span class="n">start_dire</span><span class="p">)</span>
Copy after login

回复内容:

考虑到题主是新手,我就多说几个方法

0. runpy.run_path('my_awesome_program.py')
首选这个方法,全平台通用


1. 直接import那个文件(如果那个文件没加__name__=='__main__'判断的话),如果文件名是变量的话,用__import__('my_awesome_program')

2. os.startfile('my_awesome_program.py')
这是windows-only的,自己用用还行,稍微大一点的项目就别用了

3. os.system('python "%s"' % 'my_awesome_program.py')
但如果对方电脑的python不在%path%里就挂了,因此还是仅限自己用

4.用subprocess,命令行同上,用法请自行百度或者查文档
同样也仅限自己用

5. 你试试execfile('my_awesome_program.py'),我没试过,不确定行不行
UPDATE: 我试过了,可以,好像这个也是全平台通用的。 Python不知道,不过Perl语言有一个内置变量$^X,其内容是正在执行当前脚本的Perl解释器的路径。可以用那个变量的内容去执行另一个Perl脚本:
system($^X, "another_script.pl");
Copy after login
先读.py的文件,然后使用eval函数执行.py的文件内容,或者用import 至少有两种方法,假定b.py在E盘的根目录:
1. 把B.py所在的路径加入系统路径:
<span class="kn">import</span> <span class="nn">sys</span>
<span class="n">sys</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s">'E:/'</span><span class="p">)</span>
<span class="kn">import</span> <span class="nn">b</span>
<span class="n">b</span><span class="o">.</span><span class="n">foo</span><span class="p">()</span>
Copy after login
把explorer.exe换成python.exe试试
还可以通过import来执行其他文件里的代码
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to Fix Explorer.exe High CPU Usage Windows 11 How to Fix Explorer.exe High CPU Usage Windows 11 May 02, 2023 am 09:40 AM

Unlike the Explorer.exe high CPU usage issue in Windows 11, a computer may experience high CPU usage. This is completely normal, as long as it happens rarely and doesn't significantly affect your PC's performance. However, this can become a problem when it occurs repeatedly. It can heat up your system, delay loading times, and potentially freeze while you're working on important tasks. Why is my computer experiencing high CPU usage with Explorer.exe? Typically, a computer may experience high CPU usage due to one of the following reasons: Running programs that require higher CPU requirements: Video editing and gaming software can trigger high CPU usage. If published with

What should I do if docker start cannot start? What should I do if docker start cannot start? Oct 21, 2022 pm 03:43 PM

Solution to docker start failure: 1. Check the running status, and then release the occupied memory through the "echo 3 &gt; /proc/sys/vm/drop_caches" command; 2. Use "$netstat -nltp|grep .. ." command to check whether the port has been occupied. If it is found to be occupied after going online, change it to an available port and restart.

Internet Explorer opens Edge: How to stop MS Edge redirection Internet Explorer opens Edge: How to stop MS Edge redirection Apr 14, 2023 pm 06:13 PM

It's no secret that Internet Explorer has fallen out of favor for a long time, but with the arrival of Windows 11, reality sets in. Rather than sometimes replacing IE in the future, Edge is now the default browser in Microsoft's latest operating system. For now, you can still enable Internet Explorer in Windows 11. However, IE11 (the latest version) already has an official retirement date, which is June 15, 2022, and the clock is ticking. With this in mind, you may have noticed that Internet Explorer sometimes opens Edge, and you may not like it. So why is this happening? exist

How to solve explorer.exe application error How to solve explorer.exe application error Jun 21, 2023 pm 02:14 PM

Solution to the explorer.exe application error: 1. Press the "win" + "R" key combination on the keyboard, and then enter the command "inetcpl.cpl" in the run window that opens; 2. Select the "Advanced" option above Card, click "Reset" below; 3. In the pop-up window, check "Delete Personal Settings", then click "Reset" below. If the above operations cannot solve the problem, please check whether there are Trojans on the computer. At this time, it is recommended to reinstall the system and install an original or pure version of the system.

How does Python's import work? How does Python's import work? May 15, 2023 pm 08:13 PM

Hello, my name is somenzz, you can call me Brother Zheng. Python's import is very intuitive, but even so, sometimes you will find that even though the package is there, we will still encounter ModuleNotFoundError. Obviously the relative path is very correct, but the error ImportError:attemptedrelativeimportwithnoknownparentpackage imports a module in the same directory and a different one. The modules of the directory are completely different. This article helps you easily handle the import by analyzing some problems often encountered when using import. Based on this, you can easily create attributes.

Microsoft hopes to make Windows 11 faster by decoupling functionality from explorer.exe Microsoft hopes to make Windows 11 faster by decoupling functionality from explorer.exe May 06, 2023 am 08:40 AM

Windows Task Manager If you are a long-time Windows user, you know that several processes or functions in the operating system are associated with File Explorer. While explorer.exe should only be associated with file management, it is also associated with other parts of the Windows experience, such as the taskbar, which is not a good thing for performance. Microsoft has been taking steps to separate features such as the taskbar and notification center from File Explorer (explorer.exe). The integration between the desktop and explorer.exe is one of the operating system's bottlenecks, as heavy resource-intensive file operations can clog irrelevant tasks such as the taskbar.

Internet Explorer 11 to be retired in three months Internet Explorer 11 to be retired in three months Apr 13, 2023 pm 10:34 PM

Microsoft has announced the retirement of the Internet Explorer 11 web browser for most versions of the Windows 10 operating system. Yesterday, Microsoft issued a reminder that support for Internet Explorer 11 will end on June 15, 2022. A message on the Windows Release Health website notifies users and administrators that Internet Explorer 11 is ending as a desktop application. like

The end of an era: Internet Explorer 11 is retired, here's what you need to know The end of an era: Internet Explorer 11 is retired, here's what you need to know Apr 20, 2023 pm 06:52 PM

June 15, 2022 is the day when Microsoft ends support for Internet Explorer 11 (IE11) and closes its legacy browser chapter. The company has been reminding users of this end-of-life date for some time and calling on them to plan a move to Microsoft Edge. Microsoft bundles IE11 with Windows 8.1 as the modern default web browser for Windows. Although it never reached the (current) heights of Chrome, it was the second most used desktop browser in 2014, behind IE8. Of course, with 20

See all articles