摘要:
import re text = "123123aoasasdfaisdfs阿瑟东阿瑟东佛阿迪斯发到付撒大沙发" # 查找所有的数字 nums = re.findall(r'\d+', text) print(nums) # 查找所有的单词 words = re.findall(r'[a-zA-Z] 阅读全文
摘要:
import threading import time from datetime import datetime as dt def say_hello(word): time.sleep(1) print(word) pool = [] now = dt.now() for x in rang 阅读全文
摘要:
import matplotlib.pyplot as plt import jieba from wordcloud import wordcloud # 1.读出词语 text = open('text/test.txt', 'r', encoding='utf-8').read() print 阅读全文
摘要:
import seaborn as sns import matplotlib.pyplot as plt import numpy as np import random mat = np.random.random((100, 100)) * 255 mat = np.array(mat, dt 阅读全文
摘要:
from PIL import Image # 打开图片 img = Image.open("hzw.jpg") # 展示图片 # img.show() # 打印图片信息 print(img.format, img.size, img.mode) # 保存图片 # img.save() # 图像通道 阅读全文
摘要:
import random for x in range(10): # 随机整数 # r = random.randint(1, 10) == round((random.random()) * 10) # 0-1之间的随机数 r = random.random() # 生产指定范围内的随机数 r 阅读全文
摘要:
import os # 列出当前路径下所有的文件 files = os.listdir("./") print(files[3]) # 加载指定文件 # 方法一 # 新建一个文件流 # fp = open(files[4], 'r', encoding="UTF-8") # # 获取所有的文本 # 阅读全文
摘要:
在工作中常常有这个需求就是特别是类似管理系统的左侧菜单,自定义一些图片的时候,需要渲染本地的img资源 这些图片资源往往是放在本地的assets/images下的,如果成功渲染除这些资源呢,我的做法是 第一步,在utils下新建一个menu.ts文件,然后在里面配置我的菜单 let MenuList 阅读全文