码迷,mamicode.com
首页 >  
搜索关键字:all in one    ( 50303个结果
命令行参数
#通过管道传递 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
树莓派部署zabbix搭建zabbix平台
树莓派还开发了基于Debian的64位专用操作系统。其它方面,8GB版本和4GB/2GB的配置完全一致。由于树莓派的体积很小很轻,并且功能极其丰富强大,这也使得它的应用范围和潜力几乎是无限的
分类:其他好文   时间:2020-09-02 16:50:14    阅读次数:50
[COCI2017-2018#3] Programiranje
题目 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
初级美语 L111 Confucius 解析
一、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
Linear Regression Analysis
第二章 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和Tuple类型的基本知识和使用。 Python创建list Python内置的一种数据类型是列表:list。list是一种有序的集合,可以随时添加和删除其中的元素。 比如,列出班里所有同学的名字,就可以用一个list表示: >>> ['Michael', ' ...
分类:编程语言   时间:2020-08-27 13:10:03    阅读次数:63
Vue-router常用方法
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
50303条   上一页 1 ... 89 90 91 92 93 ... 5031 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!