當前位置:成語大全網 - 書法字典 - Python3獲取shell輸出的信息?

Python3獲取shell輸出的信息?

打印功能本身可以將內容輸出到文件中。例子如下:

……

打開(" print_content.txt "," w ")作為file_out:

及格

print("hello ",file = file_out)

file_out.close()

……