在Python交互式外壳中时,我可以将上一个命令复制到剪贴板吗?

时间:2018-09-01 20:15:53

标签: python python-interactive

交互式外壳中是否存在一个将最后一个表达式复制到剪贴板的命令?

我知道有一个_命令,它会重复最后一个表达式的求值,例如

>>>  " ".join(['a', 'b', 'c'])
'a b c'
>>> _
'a b c'

但是我要寻找的是将" ".join(['a', 'b', 'c'])复制到剪贴板的命令。有这样的事吗?

2 个答案:

答案 0 :(得分:0)

您可以使用终端仿真器的工具来做到这一点。

在Python本身中,没有这样的功能-但是可以为IPython添加用户提供的魔术命令-my comment here

答案 1 :(得分:0)

使用ipython终端。

$ ipython

Python 3.6.6 |Anaconda, Inc.| (default, Jun 28 2018, 11:07:29) 
Type 'copyright', 'credits' or 'license' for more information
IPython 6.5.0 -- An enhanced Interactive Python. Type '?' for help.



In [1]: " ".join(['a', 'b', 'c'])
Out[1]: 'a b c'

In [2]: _
Out[2]: 'a b c'

In [3]: _1
Out[3]: 'a b c'

In [4]: __
Out[4]: 'a b c'

In [5]: _
Out[5]: 'a b c'

In [6]: _1
Out[6]: 'a b c'