03 2023 档案
摘要:http://www.manongjc.com/detail/28-pvktparedhhxedw.html ###判断字符串不为空 [ -n "$a" ] 如果变量a没有定义,则一定要加双引号 ###判断字符串为空 [ -z "$a"] 或 [ -z $a]
阅读全文
摘要:import pandas as pd # 创建一个包含学生信息的列表 students = [ ['Alice', 20, 80], ['Bob', 21, 75], ['Charlie', 19, 90], ['Dave', 18, 65] ] # 将列表转换为DataFrame df = pd
阅读全文
摘要:https://zhuanlan.zhihu.com/p/359472418 https://zhuanlan.zhihu.com/p/557637513 http://www.weilez.cn/?p=959
阅读全文