Python 2.7.9 Demo

Right

#!/usr/bin/python
if True:
    print ("True");
    print('Again');
else:
  print ("False");

Wrong

#!/usr/bin/python
if True:
    print ("True");
        print('This is wrong...');
else:
  print ("False");
原文地址:https://www.cnblogs.com/nick-huang/p/4617256.html