摘要: 如主页样式 默认灰色小猫 选中超链接hellokitty body { cursor: url('https://blog-static.cnblogs.com/files/lucas--liu/cat6.ico'),auto; } a { cursor: url('https://blog-sta 阅读全文
posted @ 2024-04-29 19:17 东岸 阅读(26) 评论(0) 推荐(0)
摘要: ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 阅读全文
posted @ 2024-04-29 13:40 东岸 阅读(32) 评论(0) 推荐(0)
摘要: 一.列表(列表可以修改,字符串和元组不能) list.append(x)-把一个元素添加到列表的结尾-相当于 a[len(a):] = [x] list.extend(L)-通过添加指定列表的所有元素来扩充列表-相当于 a[len(a):] = L list.insert(i, x)-在指定位置插入 阅读全文
posted @ 2024-04-29 11:10 东岸 阅读(18) 评论(0) 推荐(0)
摘要: git init 初始化-在一个文件夹下创建.git隐藏文件(如果子目录存在.git需要先进行删除,否则提示创建失败) git clone 克隆代码库 git push / pull 推代码/拉代码 git branch --sort=committerdate 按提交的时间顺序进行展示分支 git 阅读全文
posted @ 2024-04-29 09:39 东岸 阅读(23) 评论(0) 推荐(0)