随笔分类 -  Python

Ping
摘要:# -*- coding: utf-8 -*- """ Created on Mon Sep 17 19:43:44 2018 @author: WDH """ """ 可在命令行直接带目的IP,也可将IP列表在文本文件中, 当IP数量大于等于10时启用多线程,线程数10或者11个 pingip.p 阅读全文

posted @ 2020-01-01 23:52 log01bq 阅读(227) 评论(0) 推荐(0)

PyQt5 安装教程(2)
摘要:或者参考:https://blog.csdn.net/u013044310/article/details/80777840 这篇文章 PyQt5+Pycharm安装和配置原创章子雎Kevin 发布于2018-05-08 20:15:24 阅读数 15112 收藏展开 PyQt5安装之前安装过ana 阅读全文

posted @ 2019-12-29 22:39 log01bq 阅读(4492) 评论(0) 推荐(0)

PyQt 5 安装配置(1)
摘要:一、安装 PyQt5pip install PyQt5 -i https://pypi.tuna.tsinghua.edu.cn/simple二、安装Qt Designerpip install PyQt5-tools -i https://pypi.tuna.tsinghua.edu.cn/sim 阅读全文

posted @ 2019-12-21 15:09 log01bq 阅读(423) 评论(0) 推荐(0)

Python中 with open(file_abs,'r') as f: 的用法以及意义
摘要:https://blog.csdn.net/NeverLate_gogogo/article/details/85292663 Python内置了读写文件的函数,用法和C是兼容的。本节介绍内容大致有:文件的打开/关闭、文件对象、文件的读写等。 本章节仅示例介绍 TXT 类型文档的读写,也就是最基础的 阅读全文

posted @ 2019-12-20 22:26 log01bq 阅读(13238) 评论(0) 推荐(0)

python 中with 用法讲解
摘要:https://www.cnblogs.com/wanglei-xiaoshitou1/p/9238275.html 一、With语句是什么? 有一些任务,可能事先需要设置,事后做清理工作。对于这种场景,Python的with语句提供了一种非常方便的处理方式。一个很好的例子是文件处理,你需要获取一个 阅读全文

posted @ 2019-12-20 22:22 log01bq 阅读(615) 评论(0) 推荐(0)

anacanda 安装python 教程
摘要:https://www.jb51.net/article/169733.htm 阅读全文

posted @ 2019-12-08 00:45 log01bq 阅读(217) 评论(0) 推荐(0)

Python 读取excel
摘要:https://www.jianshu.com/p/f2c9dff344c6: 一、xlrd模块介绍 xlrd是读取excel表格数据; 支持 xlsx和xls 格式的excel表格; 三方模块安装方式:pip3 install xlrd; 模块导入方式: import xlrd 二、xlrd模块操 阅读全文

posted @ 2019-11-15 11:57 log01bq 阅读(192) 评论(0) 推荐(0)

Python3.7.4安装
摘要:1.下载:wget https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tgz 解压:tar zxvf Python-3.7.4.tgz cd Python-3.7.4.tgz ./configure make all yum install l 阅读全文

posted @ 2019-11-14 22:34 log01bq 阅读(203) 评论(0) 推荐(0)

导航