Python
文章平均质量分 87
BruceChen2025
Bruce
展开
-
【Python总结】- 2022/3/25 Bruce
基础String字符串相关index()方法 检测字符串中是否包含子字符串 str.index(str, beg=0, end=len(string))find()方法 找不到会返回-1index() 找不到会抛异常 ValueError: substring not found','.joinstartswith()endswith()异常处理try: xxxexcept Exception as ex: xxxfinally: xx...原创 2022-03-28 14:36:10 · 875 阅读 · 0 评论 -
【Python总结】- 2022/3/24 Bruce
基础1.安装Linux安装: yum install python3.x86_64安装Conda// Command1. conda create -n xxx_env python=3.72. activate xxx_env3.查看env list: conda env list4.切换base env: activate5.安装package: conda install xxx2.知识点执行shell命令进制转换格式化..原创 2022-03-24 19:52:06 · 783 阅读 · 0 评论