<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[learn_get的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/learn_get</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; learn_get]]></copyright><item><title><![CDATA[plsql下select * from user_tables搜不到表，objects的Tables也没有内容？]]></title><link>https://blog.csdn.net/learn_get/article/details/123814814</link><guid>https://blog.csdn.net/learn_get/article/details/123814814</guid><author>learn_get</author><pubDate>Tue, 29 Mar 2022 10:42:26 +0800</pubDate><description><![CDATA[场景：
plsql，用select * from user_tables搜不到表，左侧的objects，无论当前用户/全部用户，Tables也都没有内容，怎么回事？
原因：
当前账号下没有表，只能看服务器中其他人账号里的表，所以，一些关联本账号的查询语句，就没有搜索结果，查一百遍也没用，例如：
select * from user_tables;
select * from user_tables view;

解决方案：
那就看其他账号的表咯，只要不改数据，只是看看，试试下面的语句：
select own]]></description><category></category></item><item><title><![CDATA[python怎样按某一列值拆分Excel表格]]></title><link>https://blog.csdn.net/learn_get/article/details/113262555</link><guid>https://blog.csdn.net/learn_get/article/details/113262555</guid><author>learn_get</author><pubDate>Wed, 27 Jan 2021 19:20:26 +0800</pubDate><description><![CDATA[pd.ExcelWriter@python
#用python按某一列拆分Excel工作表，将内容写入一个工作簿
本次以“按照表中的某一列，将一张表格拆分为多张表”的需求为例，简单介绍这个过程中用到的pd.ExcelWriter，及每一句的作用。

如上表《学生.xlsx》，假设有14万行28列，请按照学校名，拆分表格（不想用复制粘贴）。
##代码及解释如下
import pandas as pd
from time import time#用来计算时间，展示进度，减少焦虑

in_ws='学生.xlsx'#]]></description><category></category></item><item><title><![CDATA[Configure Python interpreter]]></title><link>https://blog.csdn.net/learn_get/article/details/113184303</link><guid>https://blog.csdn.net/learn_get/article/details/113184303</guid><author>learn_get</author><pubDate>Tue, 26 Jan 2021 17:57:00 +0800</pubDate><description><![CDATA[Configure Python interpreter@[python]
#Configure Python interpreter：怎么给pycharm配置Python解释器
（我打算把anaconda指定为解释器，因为这个里面有很多包，而且用的人多）
1.点这行蓝字，

2.弹出的这个界面，点右上角的齿轮，点Add，

3.确认已经安装有anaconda，就在右边的框里填上anaconda的位置：点文件夹图标搜索。我的方式是上面的新环境New environment，下面的现存环境Existing e]]></description><category></category></item><item><title><![CDATA[查看已安装的python版本]]></title><link>https://blog.csdn.net/learn_get/article/details/113183502</link><guid>https://blog.csdn.net/learn_get/article/details/113183502</guid><author>learn_get</author><pubDate>Tue, 26 Jan 2021 16:52:47 +0800</pubDate><description><![CDATA[查看已经安装的python版本@[python]
#查看已经安装的python版本
1.windows+r，输入cmd，确定；
2.输入python，enter。


如果输入python，告诉你，python不是内部方法blabla，通常的答案是python没有安装在C盘，同时，还没有把python的安装路径写在path里，也就是配置环境变量。
两种办法，1.在安装anaconda的时候，把它安装在C盘的某文件夹内（因为anaconda中有python程序，所以anaconda安装在哪里，python也在]]></description><category></category></item><item><title><![CDATA[查看Anaconda都安装了哪些包]]></title><link>https://blog.csdn.net/learn_get/article/details/113182648</link><guid>https://blog.csdn.net/learn_get/article/details/113182648</guid><author>learn_get</author><pubDate>Tue, 26 Jan 2021 16:11:04 +0800</pubDate><description><![CDATA[怎样查看Anaconda都安装了哪些包@anaconda
查看Anaconda都安装了哪些包
在屏幕左下角的“所有程序”，也就是Windows图案那点一下，在Anaconda3（64bit）中，点Anaconda Prompt (Anaconda3) 弹出工作框，输入pip list，即可看到所有已经带的包 。


...]]></description><category></category></item><item><title><![CDATA[怎样用python对Excel的一列或几列去重]]></title><link>https://blog.csdn.net/learn_get/article/details/106817843</link><guid>https://blog.csdn.net/learn_get/article/details/106817843</guid><author>learn_get</author><pubDate>Wed, 17 Jun 2020 21:01:17 +0800</pubDate><description><![CDATA[怎样用python对Excel中的某些列去重？
需求描述：
需要对表格去重，有时候是依据某一列，有时候是依据某几列的组合。提供.xlsx格式，输出也要表格。
难点：

表格数据量大，几万行以上，直接用Excel常常很卡，但有时WPS可以快些，但又因为WPS安装之后不好卸载，不愿用；
运行时间长，等圈圈转好久；
没法看到过程；
就是想用python，就是想写个文章emmm。。。

解释：
1.本次的表格放在桌面，代码默认表格在桌面，只需输入表格的名称即可（如5月销售表.xlsx）。可以调整表格的存储位置，在获]]></description><category></category></item><item><title><![CDATA[怎样从excel随机抽取多行]]></title><link>https://blog.csdn.net/learn_get/article/details/106673855</link><guid>https://blog.csdn.net/learn_get/article/details/106673855</guid><author>learn_get</author><pubDate>Wed, 10 Jun 2020 20:24:46 +0800</pubDate><description><![CDATA[你好！
需求详述：
有个Excel工作簿，里面存了几个sheet，需要从每个工作表中随机抽取n行，存入新表格中。另外，新表格要根据原来的工作表名称命名，以便查找结果。
本次用python实现，有Excel插件叫方方格子也可以随机抽取，但结果不是期望的亚子，可能我的打开方式有问题，大家感兴趣可以试一下，有时间再详述区别~
上代码：
from openpyxl import *
import pandas as pd
import random

'''从桌面某个Excel工作簿中的每个sheet随机抽取30行]]></description><category></category></item></channel></rss>