from tkinter import messagebox messagebox.showinfo("提示", "我是一个提示框") ...
分类:
编程语言 时间:
2021-06-02 19:46:59
阅读次数:
0
1、操作系统(***) 2、python入门 编程语言分类(***) 机器语言 汇编语言 高级语言 编译型:go 解释型:python python介绍 三大特性(******) python语言与python解释器发展史 安装py解释器(*****) python2.7解释器 python3.8解 ...
分类:
其他好文 时间:
2021-06-02 19:02:23
阅读次数:
0
import requestsfrom bs4 import BeautifulSoup headers = { 'Cookie':'OCSSID=4df0bjva6j7ejussu8al3eqo03', 'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win ...
分类:
编程语言 时间:
2021-06-02 16:41:36
阅读次数:
0
#关于博客 以前的博客是这样的: 标题 发布状态 评论数 阅读数 操作 操作 c语言学习教程1之预定义代码 (2021-01-26 19:39) 已发布 0 36 编辑 删除 C语言基础教程一之#include 仅自己 (2020-07-11 18:05) 已发布 0 0 编辑 删除 Python3 ...
分类:
其他好文 时间:
2021-06-02 15:35:39
阅读次数:
0
#!/usr/bin/env python3 # -*- coding: utf-8 -*- #根据主机ip查找openSSH配置文件~/.ssh/config对应主机配置项 #自用sshfindip命令python实现版本 #原始sshfindip为shell脚本实现,参看:/v/bin/sshf ...
分类:
编程语言 时间:
2021-06-02 15:35:27
阅读次数:
0
pyDash – A Web Based Linux Performance Monitoring Tool 你可以通过以下命令来判断是否已安装: pip --version # Python2.x 版本命令 pip3 --version # Python3.x 版本命令 // 查看启用的源列表 y ...
分类:
系统相关 时间:
2021-06-02 13:26:43
阅读次数:
0
python3的divmod()内置函数 首先,函数的名字div 表示地板除法 5//2 = 2; mod表示取余数 5%2=1 所以divmod()函数:接收两个数字类型(非复数)参数,返回一个包含商和余数的元组(a // b, a % b) 举例子: def my_divmod(a: int , ...
分类:
其他好文 时间:
2021-06-02 12:46:20
阅读次数:
0
本文主要介绍在Linux(Ubuntu Debian LinuxMint)上安装python3.7.1,通过python3.7.1源码安装,包括python3的安装步骤。并且兼容python2, 实现python2与python3共存。 原文地址:Linux(Ubuntu Debian LinuxM ...
分类:
编程语言 时间:
2021-06-02 12:45:09
阅读次数:
0
1. 代码如下: ($是命令行提示符) $ #目录结构 $ tree . ├── a.py └── impt.py 0 directories, 2 files # impt.py import sys import importlib from importlib.util import Lazy ...
分类:
编程语言 时间:
2021-05-25 18:05:28
阅读次数:
0
1 #!/usr/bin/python3 2 #coding=utf-8 3 4 import sys 5 import os 6 import re 7 8 def renamefile(name1,name2): 9 os.rename(name1,name2) 10 11 def checkf ...
分类:
编程语言 时间:
2021-05-25 17:42:30
阅读次数:
0