"TypeError: unsupported operand type(s) for /: ‘str’ and ‘int’ [图片]"
TypeError: unsupported operand type(s) for /: ‘str’ and ‘int’
1 楼观点是对的,补充一下,对内容“语法表达式”做字符串格式化:
f"{round(a2.iloc[1,0]/((a1.iloc[5,0]+a1.iloc[5,1])/2),4)}A" # 大括号里是一个变量值,或表达式结果值,不在大括号中的都是原始字符串 # 举例: a = 1 b = 2 print(f"{a} + {b} = 3") # 1 + 2 = 3 # 延展:如果想格式化中保留大括号,需要2个大括号转义 print(f"{{a}} = 1") # {1} = 1
单元格写入的内容要用放在引号内
1 楼观点是对的,补充一下,对内容“语法表达式”做字符串格式化:
单元格写入的内容要用放在引号内