初学者Python3笔记

关于新手学习Python3的一些笔记

关于if…else语句的缩进问题

在IDLE(Python GUI)界面中

>>> age=9
>>> if age>=18:
        print("adult")
elif age>=6:
        print("teenager")
else:
        print("kid")

在Python Interactive Shell界面中

>>> age=9
>>> if age>=18:
···     print('adult')
···elif age>=6:
···     print('adult')
···else:
···     print('kid')

你可能感兴趣的:(python3)