Python - 如何将python36命令行中的行保存到.py文件中?

时间:2018-03-02 01:02:51

标签: python file save

python有一个类似CMD的工具,python36。 如果您键入一行并按Enter键,您将获得输出。 我想将我在那里写的任何东西保存到一个带有.py结尾的文件中,我该怎么做? 感谢。

1 个答案:

答案 0 :(得分:2)

一个简单的演示代码:

with open("output.py","w") as fp:
    while True:
        line = input("please input:")
        if line == "": # press enter to exit
            break
        fp.write(line+"\n")