作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
是否有一些等同于 from __future__ import print_function
的东西可以从 python 2.x 转发 print
语句?
涉及一些 ipython
魔术的答案也可以接受,它让我在原型(prototype)制作过程中无需周围的括号即可打印。
最佳答案
IPython 的一些建议
%autocall
print "Hi"
使用自动调用定义魔法
from IPython.core.magic import register_line_magic
@register_line_magic
def p(line):
print(line)
p "Hi"
关闭自动调用定义魔法
from IPython.core.magic import register_line_magic
@register_line_magic
def p(line):
print(eval(line))
%p "Again"
您可以为行魔术函数创建一个 .config/ipython/profile_default/startup/autoprint.py 文件。
关于python - 从过去导入 print_statement,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20250130/
是否有一些等同于 from __future__ import print_function 的东西可以从 python 2.x 转发 print 语句? 涉及一些 ipython 魔术的答案也可以接
我是一名优秀的程序员,十分优秀!