编辑
2025-02-15
Python
00

变量和注释使用

变量解包

python 中可以对变量进行解构

python
usernames = ['silon', 'sibine'] user_a, user_b = usernames
python
# 可以对嵌套解构进行解构 attrs = [1, [66, 77]] num1, (num2, num3) = attrs
编辑
2024-12-04
安装与配置
00

GVM 安装指南

GVM(Go Version Manager)是一个用于管理 Go 语言版本的工具,可以让你方便地在多个 Go 版本之间切换。本文将介绍如何在你的系统上安装 GVM。

官方项目地址

编辑
2024-08-07
前端
00

问题说明

vite 中已经配置了 @ 路径

ts
resolve: { a
编辑
2024-08-07
编程技巧
00

解决办法:

1、在github desktop中,点击"File"-"Options";

2、在弹出的页面中,点击左侧的"Git";

3、在"Git"对应的右侧,点击"edit your global Git config file.";

编辑
2024-07-30
编程技巧
00