摘要:
array Python中的array的长度是本身携带的属性,len(),实际为调用内部函数__len__() arr: List = [0,1,2,3] index的取值范围: [-len(arr), len(arr) - 1] keys 较为少见或者可以不需要 del yield not is 阅读全文
摘要:
linux 相关 linux 工具 brew The Missing Package Manager for macOS (or Linux) llvm LLVM (Low Level Virtual Machine) is an open source compiler infrastructur 阅读全文
摘要:
Dart try catch on finally void main() { int a = 12; int b = 0; int res; try { res = a ~/ b; } on UnsupportedError { // it is used as we know waht erro 阅读全文