Python小知识点儿

2020/01/30

Python小知识点儿


?1、python逻辑运算符 and or not 

其中not使用的两个场景:

①在开发中,通常希望某个条件不满足时,执行一些代码,可以使用 not

②另外,如果需要拼接复杂的逻辑计算条件,同样也有可能使用到 not

?2、

age=2
print("你%d岁了"%age)

输出结果:
你2岁了

?3、Python小知识点儿

?4、Python小知识点儿

?5、随机数

Python小知识点儿

?6、

?7、

 未完待续...