作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我开始在我的 Mac 上使用 IPython。这 !!本应执行 shell 命令并将输出作为有用数据获取的运算符正在生成语法错误。它似乎只是将其解释为 (! (!ls)),并吐出 !ls: command not found。我无法用谷歌搜索感叹号,也不知道该去哪里
最佳答案
我认为您可能只想要一个感叹号 [docs] ,至少如果你想对输出做任何事情。例如:
localhost-2:tmp $ ipython
Python 2.7.2 (v2.7.2:8527427914a2, Jun 11 2011, 15:22:34)
Type "copyright", "credits" or "license" for more information.
IPython 0.12 -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object', use 'object??' for extra details.
In [1]: !ls
a.txt
In [2]: z = !ls
In [3]: z
Out[3]: ['a.txt']
In [4]: !!ls
Out[4]: ['a.txt']
但是(这是我假设你看到的)
In [10]: z = !!ls
In [11]: z
Out[11]: ['/bin/sh: !ls: command not found']
您可以键入 %sx?
以获取有关 !!ls
实际作用的更多信息。
关于python - 伊蟒!不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12066143/
我正在尝试使用 Ebean 获取模型的一部分在 Play! Framework ,但我遇到了一些问题,但没有找到任何解决方案。 我有这些模型: 用户: @Entity @Table(name = "u
我需要一些帮助。我有两个具有一对一关系的类: @Entity public class Parent extends Model{ @Id public Long id; @OneToMa
我是一名优秀的程序员,十分优秀!