os.system doesn't return the output of the command that you run; it prints it instead. To run a command and get its output, use os.popen(.
確定! 回上一頁