上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 39 下一页
摘要: print print(value, ..., sep=' ',end='\n') #默认空格分隔,最后一行打印换行 print(1,2,3,sep='\n', end='***') isinstance 判断类型 print(isinstance(1,(int,str,bool))) 打印奇偶数 阅读全文
posted @ 2021-01-06 15:20 豆浆D 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 计算机的冯诺依曼体系 python解释器 CPython 官方,C语言开发,最广泛的Python解释器 IPython 一个交互式、功能增强的CPython PyPy Python语言写的Python解释器,JIT技术,动态编译Python代码 Jython Python的源代码编译成Java的字节 阅读全文
posted @ 2021-01-06 14:16 豆浆D 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 同一个系统下装了多个python应用,而这些python应用需要的python版本不一样,怎么解决,答案是pyenv,当然也可以用docker。 1.安装依赖 yum install gcc make patch gdbm-devel openssl-devel sqlite-devel readl 阅读全文
posted @ 2021-01-05 18:37 豆浆D 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 安装docx模块 pip3 install python-docx 读取word整文 from docx import Document doc=Document("./a.docx") for p in doc.paragraphs: print(p.text) 简单实例1 # word_1.py 阅读全文
posted @ 2020-12-28 13:44 豆浆D 阅读(1562) 评论(0) 推荐(0) 编辑
摘要: 使用 time 模块的 strftime 方法来格式化日期 time.strftime(format[, t]) 实例 import time # 格式化成2016-03-20 11:45:39形式 time1 = time.strftime("%Y-%m-%d %H:%M:%S", time.lo 阅读全文
posted @ 2020-12-28 11:18 豆浆D 阅读(2860) 评论(0) 推荐(0) 编辑
摘要: xpath是一种在xm文档中定位的语言,详细简介,请自行参照百度百科,本文主要总结一下xpath的使用方法,个人看法,如有不足和错误,敬请指出。 注意:xpath的定位 同一级别的多个标签 索引从1开始 而不是0 1. 绝对定位: 此方法最为简单,具体格式为 xxx.find_element_by_ 阅读全文
posted @ 2020-12-15 14:14 豆浆D 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 首先我们来的python的安装目录(默认是c盘)然后打开python27下面的scripts目录,然后复制这个路径 右键我的电脑点击属性,然后点击高级系统设置,再点击环境变量在系统变量里面有个path打开他,然后把刚刚复制的路径粘贴进去(注意 path里面的东西不要删),然后一直保存就可以了 。 阅读全文
posted @ 2020-11-26 19:31 豆浆D 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 方法 DataFrame.drop_duplicates(subset=None, keep='first', inplace=False) 参数 subset : column label or sequence of labels, optional 用来指定特定的列,默认所有列 keep : 阅读全文
posted @ 2020-11-10 14:15 豆浆D 阅读(4504) 评论(0) 推荐(0) 编辑
摘要: 在用户的家目录编写一个sh脚本,例如: test.sh #!/bin/bash # 在用户的家目录创建一个文件 touch ~/haha.txt 添加可执行权限 chmod 755 test.sh 进入设置->用户与群组->登录项,点+号,选择test.sh文件即可。 重启电脑,验证是否新建了文件, 阅读全文
posted @ 2020-11-06 14:01 豆浆D 阅读(4624) 评论(0) 推荐(0) 编辑
摘要: 阅读目录 一、Jupyter Notebook是什么? 二、jupyter notebook的安装 三、jupyter notebook的使用 回到顶部 一、Jupyter Notebook是什么? 1.notebook jupyter 简介 Jupyter Notebook是一个开源Web应用程序 阅读全文
posted @ 2020-11-04 19:11 豆浆D 阅读(146) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 39 下一页