上一页 1 ··· 66 67 68 69 70 71 72 73 74 ··· 79 下一页
摘要: AIX系统定义数组和Linux系统不同 语法: $ set -A 数组名 值1 值2 值3 使用,创建一个arr的数组: $ set -A arr a b c 输出数组: 输出第一个元素: $ echo ${arr[0]} 输出第二个元素: $ echo ${arr[1]} 输出第三个元素: $ e 阅读全文
posted @ 2021-12-26 10:08 悟透 阅读(607) 评论(0) 推荐(0) 编辑
摘要: 作用: 正则表达式 必要操作: >>> import re 帮助查看: >>> help(re) 或 单独查看某个方法(函数) >>> help(re.sub) 方法(函数): >>> re.match('[0-9]+.[0-9]+', compute_capability) 阅读全文
posted @ 2021-12-06 20:47 悟透 阅读(36) 评论(0) 推荐(0) 编辑
摘要: itertools 作用: 用于创建和使用迭代器的函数工具 必要操作: >>> import itertools 帮助查看: >>> help(itertools) 方法(函数): ## 生成8为数 >>> itertools.product(lowercase+digits,repeat=8) i 阅读全文
posted @ 2021-11-27 00:03 悟透 阅读(42) 评论(0) 推荐(0) 编辑
摘要: os 作用: 系统操作 必要操作: >>> import os 帮助查看: >>> help(os) 或 单独查看某个方法(函数) >>> help(os.remove) 方法(函数): ## 删除 china.txt 文件 >>> outfile = "china.txt" >>> os.remo 阅读全文
posted @ 2021-11-26 23:36 悟透 阅读(83) 评论(0) 推荐(0) 编辑
摘要: Python官方标准库(英文): https://docs.python.org/2/library/index.html https://docs.python.org/3/library/index.html Python官方标准库(中文): https://docs.python.org/zh 阅读全文
posted @ 2021-11-26 23:25 悟透 阅读(60) 评论(0) 推荐(0) 编辑
摘要: pyperclip 作用: 复制内容 必要操作: >>> import pyperclip 帮助查看: >>> help(pyperclip) 或 单独查看某个方法(函数) >>> help(pyperclip.copy) 方法(函数): ## 复制内容 class SendMsg(object): 阅读全文
posted @ 2021-11-26 23:14 悟透 阅读(444) 评论(0) 推荐(0) 编辑
摘要: 作用: 模拟按下键盘 必要操作: >>> import pyautogui 帮助查看: >>> help(pyautogui) 或 单独查看某个方法(函数) >>> help(pyautogui.hotkey) 方法(函数): ## 模拟按下键盘组合键 ctrl+alt+w >>> pyautogu 阅读全文
posted @ 2021-11-26 23:04 悟透 阅读(1386) 评论(0) 推荐(0) 编辑
摘要: time 作用: 提供时间操作 必要操作: >>> import time 帮助查看: >>> help(time) 或 单独查看某个方法(函数) >>> help(time.clock) 方法(函数): ## 等待1秒 >>> time.sleep(1) >>> ## 返回自进程开始或首次调用cl 阅读全文
posted @ 2021-11-26 22:55 悟透 阅读(52) 评论(0) 推荐(0) 编辑
摘要: platform 作用: 获取平台信息 必要操作: >>> import platform ## 导入包 帮助查看: >>> help(platform) 或 单独查看某个方法(函数) >>> help(platform.node) 方法(函数): ## 获取计算机名 >>> platform.no 阅读全文
posted @ 2021-11-26 22:48 悟透 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 官方链接:3.10内置函数 https://docs.python.org/zh-cn/3/library/functions.html 内置函数 Python 解释器内置了很多函数和类型,任何时候都能使用。以下按字母顺序给出列表。 内置函数 A abs() aiter() all() any() 阅读全文
posted @ 2021-11-21 19:15 悟透 阅读(223) 评论(0) 推荐(0) 编辑
上一页 1 ··· 66 67 68 69 70 71 72 73 74 ··· 79 下一页