以下是一些range的简单用法 Sub aa() '-=============================================== '给B列设置填充颜色为黄色 Range("B:B").Select With Selection.Interior .Color = End With '给A1录入"我是孙悟空" Range("A1").Select ActiveCell.FormulaR1C1 = "我是孙悟空"…
int()是Python的一个内部函数 Python系统帮助里面是这么说的 >>> help(int) Help on class int in module __builtin__: class int(object) | int(x[, base]) -> integer | | Convert a string or number to an integer, if possible. A floating point | argument will…