python不同类型变量如何计算
2024-08-01
来源:化拓教育网
说明
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'
以上就是python不同类型变量计算的方法,希望对大家有所帮助。更多Python学习指路:
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。