【python】空格作用

行与缩进

python使用缩进代替{},确定语法中的代码块

if(True):
        print('AnswerTrue')
        print('true')
    else:
        print('AnswerFalse')
    print('false')

运行结果

AnswerTrue
true
false

你可能感兴趣的:(python,python)