博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 37 下一页

2021年2月3日

摘要: 1.我的电脑右击——管理——服务——orcleserviceOrcl——双击——可看路径——复制到bin目录——上一层——找到NETWORK——ADMIN 阅读全文

posted @ 2021-02-03 19:16 心默默言 阅读(6519) 评论(0) 推荐(0)

摘要: python3.6 安装MySQLdb https://blog.csdn.net/liuweiyuxiang/article/details/80666773 阅读全文

posted @ 2021-02-03 14:08 心默默言 阅读(109) 评论(0) 推荐(0)

摘要: 1.eval()函数 参数: source:一个Python表达式或函数compile()返回的代码对象 globals:可选。必须是dictionary locals:可选。任意map对象 In [2]: a = '[1,2,3]' eval(a) Out[2]: [1, 2, 3] In [3] 阅读全文

posted @ 2021-02-03 13:53 心默默言 阅读(132) 评论(0) 推荐(0)

摘要: mysql error 1130 http://www.voidcn.com/article/p-behibkqw-bsc.html 阅读全文

posted @ 2021-02-03 13:45 心默默言 阅读(73) 评论(0) 推荐(0)

2021年1月19日

摘要: 1.配置Tomcat 2.验证Tomcat是否配置成功 3.新建一个java_web项目 阅读全文

posted @ 2021-01-19 10:57 心默默言 阅读(126) 评论(0) 推荐(0)

2021年1月15日

摘要: 1. Git推送遇到 Updates were rejected because the remote contains work that you do hint: not have locally. This is usually caused by another repository pus 阅读全文

posted @ 2021-01-15 20:30 心默默言 阅读(1672) 评论(0) 推荐(0)

2021年1月7日

摘要: 1.使用 1.1初始化一个版本库 1.2添加文件 1.3查看状态 如何再添加一个t.txt文件,会有一个untracked文件 新建一个.gitignore文件,并配置忽略哪些内容 1.4文件状态的生命周期 1.5git的文件分类 1.6git提交 1.7head 1.8检出和重置 1.9diff命 阅读全文

posted @ 2021-01-07 22:54 心默默言 阅读(66) 评论(0) 推荐(0)

2020年12月12日

摘要: 1. timeit.timeit()方法 python中的timeit()方法, 它用于获取代码的执行时间。该库将代码语句运行一百万次,并提供从集合中花费的最短时间。这是一种有用的方法,有助于检查代码的性能。 语法如下: timeit.timeit(stmt, setup,timer, number 阅读全文

posted @ 2020-12-12 20:35 心默默言 阅读(1457) 评论(0) 推荐(0)

2020年12月6日

摘要: import numpy as np import pandas as pd columns = ['java', 'python', 'c++'] dates = np.arange(6) num_df = pd.DataFrame(data=np.random.randn(6, 3), inde 阅读全文

posted @ 2020-12-06 15:56 心默默言 阅读(475) 评论(0) 推荐(0)

2020年11月24日

摘要: 1、pd.set_option('expand_frame_repr', False) True就是可以换行显示。设置成False的时候不允许换行 2、pd.set_option('display.max_rows', 10) pd.set_option('display.max_columns', 阅读全文

posted @ 2020-11-24 18:45 心默默言 阅读(169) 评论(0) 推荐(0)

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 37 下一页