请考虑以下代码:
def add_function(a, b):
c = str(a) + b
print "c is %s" % c
def add_int_function(c, d):
e = c + d
print "the vaule of e is %d" % e
if __name__ =="__main__":
add_function(59906, 'kugrt5')
add_int_function(1, 2)
Run Code Online (Sandbox Code Playgroud)
它总是告诉我:"预计2个空行,在1中找到1" add_int_function,但不在add_function.
当我在前面加两个空格def add_int_function(c, d):
存在错误显示unindent does not match any outer indentation level
在结束add_function: