2017-12-15python全栈9期第二天第七节之练习题

#!/user/bin/python
# -*- coding:utf-8 -*-
print(6 or 2 > 1)
print(3 or 2 >1 )
print(0 or 5 <4)
print(5 <4 or 3)
print(2 > 1 or 6)
print(3 and 2 >1 )
print(0 and 3 > 1)
print(2 > 1 and 3)
print(3 >1 and 0)

猜你喜欢

转载自www.cnblogs.com/zhang-da/p/10188087.html