❤️💕💕
python
是一种动态的解释形语言,由于python
的普遍性,学会python
能更快的解决问题,以及学习其他的知识。Myblog:http://nsddd.top
[TOC]
根据条件是True
还是 打印消息False
:
a = 200
b = 33
if b > a:
print("b is greater than a")
else:
print("b is not greater than a")
尝试
In [75]: a
Out[75]: 'Hello Word'
In [76]: a == "Hello Word"
Out[76]: True
In [77]: a == 'as'
Out[77]: False
-
✴️版权声明 © :本书所有内容遵循CC-BY-SA 3.0协议(署名-相同方式共享)©