name = 'wenbin'
height = 180
weight = 160
x1,x2,x3 = name,height,weight
print("my name is "+x1+",my height is "+str(x2)+",my weight is "+str(x3))
print("my name is "+name+",my height is "+str(weight)+",my weight is "+str(height))
print("my name is %s,my hight %s,my weight is %s "%(name,height,weight))
print('my name is {},my weight is {},my hight is {}'.format(name,weight,height))
print('my name is {0},my weight is {1},my hight is {2}'.format(name,weight,height))
print(f'my name is {name},my weight is {weight},my herght is {height}')
print(F'my name is {name},my weight is {weight},my herght is {height}')
print(f'my weight is {weight:4f}')
# 从左到右的方式找到逻辑运算符,找到逻辑运算符的左边,左边成立,再去找到逻辑运算符的右边
print(3 > 3 and 1 > 2 or 2 > 1) # False
is和==的区别:is用于判断两个变量引用对象是否为同一个(是否在同一块内存空间中), ==用于判断引用变量的值是否相等。
除了以上的一些运算符之外,Python还支持成员运算符,测试实例中包含了一系列的成员,包括字符串,列表或元组。
python运算符的优先级相当于数学中的先算乘除再算加减,但是这很愚蠢,优先级高的你括号括起来就行了...
原文:https://www.cnblogs.com/wwbplus/p/11285137.html