上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: 一、概述文件属性信息组成 # 1、文件详细信息详解 134319695 -rw . 1 root root 1.7K Dec 8 12:08 anaconda-ks.cfg 134319707 -rw-r--r-- 1 root root 12 Dec 13 11:48 index # 2、inod 阅读全文
posted @ 2023-06-25 13:41 三三得九86 阅读(250) 评论(0) 推荐(0)
摘要: 一、系统目录结构介绍 1、目录结构特点 linux系统中的目录一切从根开始。 Linux系统中的目录结构拥有层次。 Linux系统中的目录需要挂载使用。 2、目录挂载初识 挂载的命令:mount mount [磁盘路径] [挂载的路径] 查看本机挂载的命令 [root@localhost dev]# 阅读全文
posted @ 2023-06-14 11:53 三三得九86 阅读(59) 评论(0) 推荐(0)
摘要: 一、必知必会部分 01、ping 登录系统网络测试 格式: ping [网址] 补充:操作中断 ctrl + c 02、 系统命令提示组成 root : 登录当前系统的用户名 @ : 分隔符,没有特殊含义 localhost : 当前系统的主机名 ~ : 当前所在的目录(~ 代表的是当前的家目录, 阅读全文
posted @ 2023-05-20 17:18 三三得九86 阅读(84) 评论(0) 推荐(0)
摘要: 一、导出基类、Excel文件处理和保存 import hashlib import os import time import xlsxwriter from application import settings from apps.web.op_drf.filters import DataLe 阅读全文
posted @ 2023-04-18 13:16 三三得九86 阅读(411) 评论(0) 推荐(0)
摘要: 1、将python打包成exe的方式 python 上常见的打包方式目是通过 pyinstaller 来实现的。 pip install pyinstaller 或者用镜像下载: 1 2 # 清华源 pip install pyinstaller -i https://pypi.tuna.tsing 阅读全文
posted @ 2023-03-16 17:11 三三得九86 阅读(521) 评论(0) 推荐(0)
摘要: 1、分组排序 return_data = sorted(return_data, key=lambda x: (x['source'], x["order_num"]), reverse=False) # 排序 sql练习 /* Navicat Premium Data Transfer Sourc 阅读全文
posted @ 2023-02-25 14:47 三三得九86 阅读(22) 评论(0) 推荐(0)
摘要: Python 排序总结 Python 排序总结1、列表排序1.1 升序1.2 降序2、字典排序2.1 升序2.1.1 lambda 表达式2.1.2 operator 模块2.2 降序2.2.1 lambda 表达式2.2.2 operator 模块3、包含字典的列表排序3.1 升序3.1.1 la 阅读全文
posted @ 2023-01-30 10:12 三三得九86 阅读(81) 评论(0) 推荐(0)
摘要: 1、四舍五入 import decimal decimal.getcontext().rounding = decimal.ROUND_HALF_UP a = str(decimal.Decimal(1.63333).quantize(decimal.Decimal("0.00"))) print( 阅读全文
posted @ 2022-10-19 19:28 三三得九86 阅读(33) 评论(0) 推荐(0)
摘要: 简单爬虫 import requests import urllib3 urllib3.disable_warnings() header = { 'user-agent': ' ', 'referer': ' ' } addr = '' res = requests.get(addr, heade 阅读全文
posted @ 2022-06-30 21:03 三三得九86 阅读(35) 评论(0) 推荐(0)
摘要: 1、go语言介绍 //1 Go 即Golang,是Google公司2009年11月正式对外公开的一门编程语言--》很新 -python:1989年 -java:1990年 // Golang和Goland是什么关系? -Golang 编程语言 -Goland jebrains公司出的编辑器,写go代 阅读全文
posted @ 2022-06-01 23:44 三三得九86 阅读(73) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 13 下一页