Loading

摘要: 一、字符串 字符串数据类型 下标取值 切片 用于for循环 用于len() 用于in 和 not in 操作符 >>> name = 'Zophie' >>> name[0] 'Z' >>> 'Zo' in name True >>> "z" in name False >>> 'p' not in 阅读全文
posted @ 2023-04-15 23:25 solomon-zj 阅读(21) 评论(0) 推荐(0)
摘要: pip install 第三方库失败??? 访问 https://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy 下载对应版本的第三方包 pip install xxxx.whl 阅读全文
posted @ 2023-04-15 22:41 solomon-zj 阅读(18) 评论(0) 推荐(0)