我用anaconda python下载了Anaconda python3.x(32位),但是当我
使用了jupyter QtConsole。我发现内置函数'help'有一些问题。
例如,当我输入 @Test
public void test() throws Exception{
List<String> expected = Arrays.asList("fee", "fi", "foe", "foo");
List<String> actual = Arrays.asList("feed", "fi1");
for(String temp : expected) {
if(!actual.stream().noneMatch((String s) -> s.equals(temp))) {
Assert.assertFalse(true);
}
}
}
时发生错误.`