Pyspark-IndentationError:预期使用Cloudera虚拟机的缩进块

时间:2018-12-01 15:19:05

标签: loops pyspark indentation

我正在使用Cloudera虚拟机快速入门-5.13.0-0-virtualbox下的终端。

employeeinfo = sqlContext.sql("SELECT * FROM EmployeeTab")
for row in employeeinfo.collect():
... print(row)

我收到此错误:

IndentationError: expected an indented block

我想我在循环后放置了正确的空格,如下图所示:

enter image description here

我做错了什么?

非常感谢!

1 个答案:

答案 0 :(得分:0)

尝试一下:

employeeinfo = sqlContext.sql("SELECT * FROM EmployeeTab")
for row in employeeinfo.collect():
...     print(row)

...之后放置4个空格