选择ipython替代python的理由
程序员文章站
2022-05-27 23:15:56
...
最近需要跑些脚本,发现原生的Python shell不具有tab提示功能,发现一篇好文,记录一下。
python shell与ipython的区别:
(1) python shell不能在退出保存历史;
ipython历史记录自动保存:
保存在history.sqlite文件下:
可用“”、“”、“”调用最近三次记录;
(2) python shell不支持tab自动补全;
ipython支持tab补全;
(3) python shell不能快速获取类、函数信息;
ipython通过“?”显示对象签名、文档字符串、代码位置,通过“??”显示源代码;
(4) python shell不能直接执行shell命令,需要借助sys;
ipython通过“!”调用系统命令,如“!uptime”;
(5) 其他
ipython有很多magic函数,可通过使用%lsmagic枚举;
%run:运行python文件
%edit:使用编辑器打开当前函数编辑
%save:把某些历史记录保存到文件
%debug:**debug程序
%timeit:获得程序执行时间
%paste:获取剪切板文件并执行,最好用%cpaste,可通过Ctrl+C中断
ipython有很多快捷键
ipython的扩展宏系统
storemagic持久化宏、变量、别名;
autoreload自动重载;
参考资料
原文:https://blog.csdn.net/ztf312/article/details/78677093
(简单版)https://www.zhihu.com/question/51467397?from=profile_question_card