本文分类:news发布日期:2025/5/10 11:58:36
相关文章
python中的字符串方法
python中的字符串
举个例子先
name = 貂蝉开大 #声明了一个字符串
print(name) # 打印了一个字符串
print(name[0:1] #输出貂蝉
print(name[2:3] #输出开大
扩展方法
find()
# 查找字符串中某个字符的索引
index_ = name.find("貂")
print(index_) # 输出 …
建站知识
2025/5/2 23:13:23
关闭窗口工具类 - C#小函数类推荐
此文记录的是一个关于关闭窗口工具类。 /***关闭窗口工具类Austin Liu 刘恒辉Project Manager and Software DesignerE-Mail: lzhdim163.comBlog: http://lzhdim.cnblogs.comDate: 2024-01-15 15:18:00使用方法:CloseWindowUtil.CloseWindow(this.Handle);***/n…
建站知识
2025/5/7 7:32:02
云计算学习——5G网络技术
系列文章目录 提示:仅用于个人学习,进行查漏补缺使用。 Day1 网络参考模型 Day2 网络综合布线与应用 Day3 IP地址 Day4 华为eNSP网络设备模拟器的基础安装及简单使用 Day5 交换机的基本原理与配置 Day6 路由器的原理与配置 Day7 网络层协议介绍一 Day8 传…
建站知识
2025/5/8 19:50:48
【安装】Linux Centos 或 Debian 离线安装指定版本MariaDB
【安装】Linux Centos 或 Debian 离线安装指定版本MariaDB
下载地址
https://mariadb.com/downloads/community/community-server/https://mirrors.aliyun.com/mariadb/yum/https://mariadb.com/downloads/community/community-server/ Download MariaDB Server - MariaDB.or…
建站知识
2025/5/8 23:36:31
【大模型】【RAG】langchain实战
后面实践一下
参考资料:
大模型应用框架LangChain系统教程3 - 检索外部数据_哔哩哔哩_bilibili
建站知识
2025/5/8 6:50:01
掌握 LINQ:通过示例解释 C# 中强大的 LINQ的集运算
文章目录 集运算符原理实战示例1. Union2. Intersect3. Except4. ExceptWith5. Concat6. Distinct 注意事项总结 在C#中,LINQ(Language Integrated Query)提供了丰富的集合操作功能,使得对集合数据进行查询、过滤、排序等操作变得…
建站知识
2025/5/9 14:34:36