上一页 1 2 3 4 5 6 7 8 9 10 ··· 22 下一页
摘要: /* 目录: 一: 语法 二: code */ 一: 语法 html: HyperText Markup language html: 是什么 css: 样式表 - 长什么样 <!-- HTML 结构 --> <p> </p> <!-- 段落 --> <h1> </h1> <!-- 标题 --> < 阅读全文
posted @ 2021-09-22 09:13 火焰马 阅读(26) 评论(0) 推荐(0) 编辑
摘要: ///////////////////////////////////////////////// df = pd.DataFrame({"ID":[1,2,3], "Name":["Time", "Victor", "Nick"]}) df = df.set_index("ID") # 设置索引 阅读全文
posted @ 2021-04-16 18:01 火焰马 阅读(47) 评论(0) 推荐(0) 编辑
摘要: // encode -> # decode : bytes - string # encode : string - bytes from sys import argv script, encoding, error = argv def print_line(line, encoding, er 阅读全文
posted @ 2021-03-28 18:07 火焰马 阅读(54) 评论(0) 推荐(0) 编辑
摘要: from sys import argv script, filename = argv def read_file(): txt = open(filename, "r+", encoding="UTF-8") print(f"Here's your file {filename}: ") # p 阅读全文
posted @ 2021-03-28 18:04 火焰马 阅读(28) 评论(0) 推荐(0) 编辑
摘要: import pandas as pd import matplotlib.pyplot as plt from scipy.stats import linregress if __name__ == '__main__': pd.options.display.max_columns = 999 阅读全文
posted @ 2021-02-17 21:20 火焰马 阅读(58) 评论(0) 推荐(0) 编辑
摘要: import pandas as pd if __name__ == '__main__': page_1 = pd.read_excel("C:/Users/18124/Desktop/pandas/027_行操作/Students.xlsx", sheet_name="Page_001") pa 阅读全文
posted @ 2021-02-17 21:18 火焰马 阅读(61) 评论(0) 推荐(0) 编辑
摘要: import pandas as pd import pyodbc import sqlalchemy if __name__ == '__main__': # 方法一 connection = pyodbc.connect("driver={sql server}; server=(local); 阅读全文
posted @ 2021-02-17 21:11 火焰马 阅读(46) 评论(0) 推荐(0) 编辑
摘要: /* 时间:2020/02/17 功能: 一 安装注意 二 安装过程 三 验证成功 */ 一 安装注意 /* 1 关闭安全类软件: 如杀毒软件 2 优先选择开发版: 《cn_sql_server_2012_developer_edition_with_sp1_x64_dvd_1234492》 */ 阅读全文
posted @ 2021-02-17 21:05 火焰马 阅读(111) 评论(0) 推荐(0) 编辑
摘要: import pandas as pd if __name__ == '__main__': pd.options.display.max_columns = 999 Videos = pd.read_excel("C:/Users/18124/Desktop/pandas/021_旋转数据表/Vi 阅读全文
posted @ 2021-02-17 20:59 火焰马 阅读(59) 评论(0) 推荐(0) 编辑
摘要: import pandas as pd import numpy as np if __name__ == '__main__': pd.options.display.max_columns = 999 orders = pd.read_excel("C:/Users/18124/Desktop/ 阅读全文
posted @ 2021-02-17 20:52 火焰马 阅读(60) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 22 下一页