#通过管道传递 cat somefile.txt |python somescriot.py |sort import sys text = sys.stdin.read() #标准输入流 words = text.split() print words #用户互动 raw_input() x = ...
分类:
其他好文 时间:
2020-09-04 17:10:31
阅读次数:
52
常用的一些正则表达式 手机号码正则表达式验证 var phone = "17754585895" console.log(/^1[34578]\d{9}$/.test(phone)) //true console.log(/^1(3|4|5|7|8)\d{9}$/.test(phone)) //tr ...
分类:
其他好文 时间:
2020-09-04 17:06:47
阅读次数:
44
前言 我在做知识竞赛答题活动小程序经常需要处理一些比较基础的事情,比如时间、数组、数字、对象、字符串等处理,自己造轮子的话成本会比较高。这时候我们可以去找一些别人已经写好的开源模块或者开源库,我们直接下载下来引入使用即可。下面就列举一些我在项目中使用过的并且比较好用的工具,来帮助我们快速开发我们的业 ...
分类:
微信 时间:
2020-09-03 17:02:58
阅读次数:
79
1、使用json-server插件 可以根据一个json文件,开启一个接口服务器,并且提供假数据。 2、如何使用? -安装:`npm i json-server -g` -使用:`json-server json文件的路径` 如:http://localhost:3000/list 3、遵循REST ...
分类:
其他好文 时间:
2020-09-03 16:46:33
阅读次数:
37
树莓派还开发了基于Debian的64位专用操作系统。其它方面,8GB版本和4GB/2GB的配置完全一致。由于树莓派的体积很小很轻,并且功能极其丰富强大,这也使得它的应用范围和潜力几乎是无限的
分类:
其他好文 时间:
2020-09-02 16:50:14
阅读次数:
50
题目 Description Little Leticija is preparing for a programming exam. Even though she has solved a lot of tasks, there’s one still left unsolved, so she ...
分类:
其他好文 时间:
2020-08-31 13:30:01
阅读次数:
65
一、Reading Confucius is respected by most Chinese as the greatest teacher of all time. Perhaps the most important word he taught was "ren," which means ...
分类:
其他好文 时间:
2020-08-31 13:28:53
阅读次数:
75
第二章 2.12 (1)拟合模型: > library(openxlsx) #加载包 openxlsx > data = read.xlsx("22_data.xlsx",sheet = 2) #read.xlsx 函数读入数据 > x = data[,1] > y = data[,2] > res ...
分类:
其他好文 时间:
2020-08-28 11:43:37
阅读次数:
42
介绍 本文主要介绍Python中List和Tuple类型的基本知识和使用。 Python创建list Python内置的一种数据类型是列表:list。list是一种有序的集合,可以随时添加和删除其中的元素。 比如,列出班里所有同学的名字,就可以用一个list表示: >>> ['Michael', ' ...
分类:
编程语言 时间:
2020-08-27 13:10:03
阅读次数:
63
router常用方法 Created: Aug 15, 2020 4:42 PM 分类: 技术点 技术: router 文件: src/components/NavHeader.vue Vue-router常用方法 通过push跳转 this.$router.push('/cart') //官方介绍 ...
分类:
其他好文 时间:
2020-08-27 13:08:26
阅读次数:
75