如何在一个py程序里执行另一个py程序?
在搜索引擎上搜过,未果
问题的详细描述:假设在桌面有一个“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>
回复内容:
考虑到题主是新手,我就多说几个方法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");
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>
还可以通过import来执行其他文件里的代码

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

Solution to docker start failure: 1. Check the running status, and then release the occupied memory through the "echo 3 > /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.

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

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.

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.

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.

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

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
