2024年06月13日 python变量 python类 Python51
说明
1、数字变量可以直接计算。
若变量为bool型,则计算时:True对应1,False对应0。
2、在字符串变量之间使用+拼接字符串。
3、字符串变量可以与整数重复拼接相同的字符串。
实例
first_name = "zhang" x = 10 x + first_name ------------------------------- TypeError: unsupported operand type(s) for +: 'int' and 'str'
本文链接:http://so.lmcjl.com/news/6463/