python 学习
在定义Python函数的时候如下
>>>def hello()
. . .print "hello"这样会报错的,报错如下:
IndentationError: expected an indented block
哈哈
本文共 203 字,大约阅读时间需要 1 分钟。
在定义Python函数的时候如下
>>>def hello()
. . .print "hello"
这样会报错的,报错如下:
其实是空格的问题,需要在 print"hello"之前加空格!IndentationError: expected an indented block
哈哈
转载于:https://www.cnblogs.com/pualus/p/6016125.html