其他分享
首页 > 其他分享> > if not 和 transfrom 理解

if not 和 transfrom 理解

作者:互联网

来感受吧

 if not :

if not (1 > 2):        #如果()中的表达式为假
   print("hahaha")    #1 > 2结果是假,所以执行hahaha
else:
   print("hihihi")
if not 1:              #1为真,并不为假,因此不执行hahaha,执行hihihi
   print("hahaha")
else:
   print("hihihi")

transfrom:

df = pd.DataFrame({'A': [1,2,3], 'B': [10,20,30] })

def plus_10(x):
    return x+10

df.transform(plus_10)

     A   B

0  11 20

1  12 30

2  13 40

标签:10,20,理解,hihihi,transfrom,hahaha,print
来源: https://blog.csdn.net/qq_42781616/article/details/113885876