上一页 1 2 3 4 5 6 ··· 29 下一页
摘要: 改变编码格式 vim test.sh :set ff? // 显示dos的话,说明是windows编码格式 :set ff=unix // 改变编码格式为unix :wq // 保存退出 阅读全文
posted @ 2023-10-23 10:06 香菜哥哥 阅读(13) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/601894291 阅读全文
posted @ 2023-10-09 18:31 香菜哥哥 阅读(8) 评论(0) 推荐(0) 编辑
摘要: ORacle安装参考博客:https://blog.csdn.net/lidapang123/article/details/88928035 Oracle安装包下载地址:https://www.oracle.com/database/technologies/oracle-database-sof 阅读全文
posted @ 2023-10-09 18:30 香菜哥哥 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://www.lfd.uci.edu/~gohlke/pythonlibs/ 阅读全文
posted @ 2023-09-20 17:16 香菜哥哥 阅读(12) 评论(0) 推荐(0) 编辑
摘要: Python学习网站:http://www.coolpython.net/python_primary/sort/pop_sort.html 阅读全文
posted @ 2023-09-07 09:34 香菜哥哥 阅读(9) 评论(0) 推荐(0) 编辑
摘要: https://www.orchome.com/10485 B站:https://www.bilibili.com/video/BV1cq4y1R7h8/?spm_id_from=333.337.search-card.all.click&vd_source=f7b26a8cc6688554375b 阅读全文
posted @ 2023-08-28 10:03 香菜哥哥 阅读(6) 评论(0) 推荐(0) 编辑
摘要: # tuple 元组,特点:不可变的列表 t = ("aaa", "ccc", "bbb") print(t) print(t[1:3]) # 元组如果只有一个元素(*),需要在元素的末尾添加一个逗号 # t = ("哈哈") # ()默认是优先级 # print(t) # print(type(t 阅读全文
posted @ 2023-08-16 15:40 香菜哥哥 阅读(4) 评论(0) 推荐(0) 编辑
摘要: # set集合 # s = {1,"哈哈",2,3} # print(type(s)) # print(s) # s = {1,"哈哈",2,3, []} # unhashable type: 'list' 不可哈希 # print(s) # 不可哈希:python中的set集合进行数据存储的时候, 阅读全文
posted @ 2023-08-16 15:39 香菜哥哥 阅读(4) 评论(0) 推荐(0) 编辑
摘要: # 1.首先,字典是以键值对的形式进行存储数据的 # 字典的表示方式:{key:value, key2:value, ...} # dic = {"jay": "周杰伦", "金毛狮王": "谢逊"} # val = dic["jay"] # print(val) # 字典的 key 必须是可哈希的 阅读全文
posted @ 2023-08-16 15:36 香菜哥哥 阅读(5) 评论(0) 推荐(0) 编辑
摘要: # 列表的特性: ''' 1.像字符串一样有索引和切片 2.索引如果超过范围会报错 3.可以用for循环进行遍历 4.用len可以拿到列表的长度 ''' # 列表的增删改查 # lst = [] # 向列表中添加内容 # 1.append() 追加 # lst.append("tom") # lst 阅读全文
posted @ 2023-08-14 11:40 香菜哥哥 阅读(7) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 29 下一页