ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

如何将命令提示符中的Python编码保存为文件?

2019-06-09 10:44:29  阅读:514  来源: 互联网

标签:python file save command-prompt python-3-4


我刚从Python34中的一本书中输入了一个运行命令提示符的例子.

但现在我想将此python程序保存为文件以供将来使用.由于我以前从未使用过命令提示符,我也在网上搜索,但大多数都无法回答.

谁能在这里展示解决方案?谢谢.

解决方法:

您可以使用%save在ipython中保存行:

用法:

%save [options] filename n1-n2 n3-n4 … n5 .. n6 …
Options:

-r: use ‘raw’ input. By default, the ‘processed’ history is used, so that magics are loaded in their transformed version to valid Python. If this option is given, the raw input as typed as the command line is used instead.

-f: force overwrite. If file exists, %save will prompt for overwrite unless -f is given.

-a: append to the file instead of overwriting it.

This function uses the same syntax as %history for input ranges, then saves the lines to the filename you specify.

It adds a ‘.py’ extension to the file if you don’t do so yourself, and it asks for confirmation before overwriting existing files.

If -r option is used, the default extension is .ipy.

In [1]: def foo():
   ...:     print("hello world")
   ...:     

In [2]: %save my_code 1
The following commands were written to file `my_code.py`:
def foo():
    print("hello world")


In [3]: cat my_code.py
# coding: utf-8
def foo():
    print("hello world")

标签:python,file,save,command-prompt,python-3-4
来源: https://codeday.me/bug/20190609/1204589.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有