config.json 5.5 KB
Newer Older
F
feilong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
{
  "export": [
    "string.json",
    "list.json",
    "tuple.json",
    "dict.json"
  ],
  "keywords": [],
  "children": [
    {
      "整型": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-118"
      }
    },
    {
      "浮点型": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-119"
      }
    },
    {
      "布尔型": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-120"
      }
    },
    {
      "字符串": {
        "keywords": [],
        "children": [
          {
            "单引号字符串以及对引号转义": {
              "keywords": [],
              "children": [],
              "node_id": "python-5-72"
            }
          },
          {
            "拼接字符串": {
              "keywords": [],
              "children": [],
              "node_id": "python-5-73"
            }
          },
          {
            "字符串表示str和repr": {
              "keywords": [],
              "children": [],
              "node_id": "python-5-74"
            }
          },
          {
            "长字符串、原始字符串和字节": {
              "keywords": [],
              "children": [],
              "node_id": "python-5-75"
            }
          },
          {
            "字符串基本操作": {
              "keywords": [],
              "children": [],
              "node_id": "python-5-76"
            }
          },
          {
            "设置字符串的格式:精简版": {
              "keywords": [],
              "children": [
                {
                  "替换字段名": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-18"
                  }
                }
              ],
              "node_id": "python-5-77"
            }
          },
          {
            "使用方法修改字符串的大小写": {
              "keywords": [],
              "children": [],
              "node_id": "python-5-78"
            }
          },
          {
            "使用制表符或换行符来添加空白": {
              "keywords": [],
              "children": [],
              "node_id": "python-5-79"
            }
          },
          {
            "删除空白": {
              "keywords": [],
              "children": [],
              "node_id": "python-5-80"
            }
          },
          {
            "使用字符串时避免语法错误": {
              "keywords": [],
              "children": [],
              "node_id": "python-5-81"
            }
          },
          {
            "字符串编码转换": {
              "keywords": [],
              "children": [
                {
                  "使用encode方法编码": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-19"
                  }
                },
                {
                  "使用decode方法解码": {
                    "keywords": [],
                    "children": [],
                    "node_id": "python-6-20"
                  }
                }
              ],
              "node_id": "python-5-82"
            }
          }
        ],
        "node_id": "python-4-121"
      }
    },
    {
      "datetime --- 基本的日期和时间类型": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-122"
      }
    },
    {
      "zoneinfo --- IANA时区支持": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-123"
      }
    },
    {
      "calendar --- 日历相关函数": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-124"
      }
    },
    {
      "collections --- 容器数据类型": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-125"
      }
    },
    {
      "collections.abc --- 容器的抽象基类": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-126"
      }
    },
    {
      "heapq --- 堆队列算法": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-127"
      }
    },
    {
      "bisect --- 数组二分查找算法": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-128"
      }
    },
    {
      "array --- 高效的数值数组": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-129"
      }
    },
    {
      "weakref --- 弱引用": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-130"
      }
    },
    {
      "types --- 动态类型创建和内置类型名称": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-131"
      }
    },
    {
      "copy --- 浅层 (shallow) 和深层 (deep) 复制操作": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-132"
      }
    },
    {
      "pprint --- 数据美化输出": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-133"
      }
    },
    {
      "reprlib --- 另一种repr 实现": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-134"
      }
    },
    {
      "enum --- 对枚举的支持": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-135"
      }
    },
    {
      "graphlib --- Functionality to operate with graph-like structures": {
        "keywords": [],
        "children": [],
        "node_id": "python-4-136"
      }
    }
  ],
  "node_id": "python-3-14"
}