在代码中的[]和Out []中

时间:2014-08-12 16:40:19

标签: python

请有人向我解释,或指向参考,以下代码中的In [5]Out[5]是什么意思:

In [5]: list(set(temp1) - set(temp2))
Out[5]: ['Four', 'Three']

2 个答案:

答案 0 :(得分:4)

这不是python代码,IPython显示行代码的方式,在这种情况下是你的第5行。在你的输入和输出是输入的结果。

答案 1 :(得分:3)

这是IPython的提示......除了跟踪你在IPython会话中发出了多少命令之外,它没有多大意义。这些线成对出现(输入和输出)。类似地,你经常会看到人们从普通的命令行python会话中复制/粘贴,然后你会在整个地方看到>>>输入(输出没有>>>):< / p>

$ python
Python 2.7.5 (default, Mar  9 2014, 22:15:05) 
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> list(set('abc') - set('bc'))
['a']
>>>