入门介绍 正则表达式是由普通字符(如英文字母、数字等)以及特殊字符(如元字符"\D")组成的字符串模式,正则表达式可以理解成一套模板,这套模板可以匹配字符串。 入门练习 例如从下面这行字符串 https://editor.csdn.net/md?articleId=112210427 中提取出文章i ...
分类:
编程语言 时间:
2021-01-11 11:20:11
阅读次数:
0
# 练习题3 # 编写函数, 实现计算器中加减乘除功能 # 例如:输入: 2+33 def computer(a, b, c): if b == "+": print(int(a) + int(c)) elif b == "-": print(int(a) - int(c)) elif b == " ...
分类:
其他好文 时间:
2021-01-11 10:39:55
阅读次数:
0
练习:判断是否为闰年 year=eval(input("请输入年份:"))pd=Trueif year%400==0: pd=Trueelif year%4==0 and year%100!=0: pd = Trueelse: pd=Falseif pd==True: print(str(year) ...
分类:
其他好文 时间:
2021-01-11 10:32:50
阅读次数:
0
package com.lyc.struct;public class ForDemo02 { public static void main(String[] args) { //练习1:计算0到100之间的奇数和偶数的和 int odd = 0; int even = 0; //偶数// for ...
分类:
其他好文 时间:
2021-01-08 11:23:42
阅读次数:
0
今天继续刷leetcode。 今天着重练习了一下回文串(Palindromic string)相关的题目,其中做到1457. Pseudo-Palindromic Paths in a Binary Tree这一道题的时候,自己方法没错,但跑了两次都是TLE,然后心态有点崩,就去看了一下别人的代码, ...
分类:
其他好文 时间:
2021-01-07 12:43:48
阅读次数:
0
sed命令 语法: sed [options] '{command}[flags]' [filename] {}是必须有,[]可选 options: -r 使用扩展的正则表达式 -n 只打印缓存中的内容,不打印文本内容 -e 执行多个命令 -f 执行文件中的命令 -i 修改原文件 -i.xxxx 修 ...
分类:
系统相关 时间:
2021-01-07 12:17:11
阅读次数:
0
1、首先安装一下ansible yum install ansible 2、修改一下ansible的参数以防ssh过去的时候需要首次判断yes 或者no sed -i 's/#host_key_checking = False/host_key_checking = False/g' /etc/an ...
分类:
其他好文 时间:
2021-01-07 12:10:47
阅读次数:
0
安装部署主控节点服务 -- etcd 部署master节点服务 部署etcd集群 集群规划 HDss7-12.host.com ectc lead 192.168.154.12 HDss7-21.host.com ectc follow 192.168.154.21 HDss7-22.host.co ...
分类:
其他好文 时间:
2021-01-07 11:46:58
阅读次数:
0
Python for Data Science - Data Visualization Three Different Data Visualization Types Data storytelling - for presentations to organizational decision ...
分类:
编程语言 时间:
2021-01-06 12:18:03
阅读次数:
0
最近再用https://www.apishop.net/中的提供的接口做练习,用vue-cli搭的脚手架. 前端页面地址 http://localhost:8080 数据接口地址 https://api.apishop.net/common/dogFamily/queryDogList 在confi ...
分类:
其他好文 时间:
2021-01-06 11:55:27
阅读次数:
0