摘要:关闭Python Console运行模式 在Python里run的时候突然会发现,进入的不是run模式,而是console模式,这种运行模式能保留你每次的运行历史,因为会重开一个运行小页面,对于强迫症来说,甚是不爽啊,比如🔽 Python console运行模式如下:看到这种不爽的情况,我立马嘶吼
阅读全文
posted @ 2020-08-24 16:52
|
|||
08 2020 档案
摘要:关闭Python Console运行模式 在Python里run的时候突然会发现,进入的不是run模式,而是console模式,这种运行模式能保留你每次的运行历史,因为会重开一个运行小页面,对于强迫症来说,甚是不爽啊,比如🔽 Python console运行模式如下:看到这种不爽的情况,我立马嘶吼
阅读全文
posted @ 2020-08-24 16:52
摘要:https://jingyan.baidu.com/article/624e7459b194f134e8ba5a8e.html
阅读全文
posted @ 2020-08-20 16:15
摘要:import pandas as pd # 创建一个空的dataframe df1 = pd.DataFrame( columns=['name', 'gender', 'age']) print(df1) # 创建一条记录 new = pd.DataFrame({'name': 'lisa', '
阅读全文
posted @ 2020-08-20 14:16
摘要:https://www.cnblogs.com/jfl-xx/p/8024596.html https://blog.csdn.net/u013185349/article/details/105027243/
阅读全文
posted @ 2020-08-19 16:04
摘要:1.DataFrame.drop() 用法:DataFrame.drop(labels=None,axis=0, index=None, columns=None, inplace=False) 参数说明:labels 就是要删除的行列的名字,用列表给定axis 默认为0,指删除行,因此删除colu
阅读全文
posted @ 2020-08-19 11:29
|
|||