Python 执行 Ubuntu 命令

Python 执行 Ubuntu 命令

我做的:

import os

os.system("cd /home/k/Documents/Avr")

a = raw_input("1-for ATmega32A 2-ATmega328P")

if (a == 1) :
    os.system("cd ATmega32")
if (a == 2):
    os.system("cd ATmega328P")

但它就此结束,我回到了桌面,那里有这个 python 文件!!!

我想制作一个 Python 应用程序,它采用我的 MCU 模型(1 或 2),然后采用 .c 文件/文件夹名称,然后自动编译并将其刷新到我的 mcu!!!(“使用 avr-gcc 和 avrdude”)

答案1

有什么问题

os.chdir(mypath)

相关内容